summaryrefslogtreecommitdiffstats
path: root/content/renderer/webclipboard_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* Fix "-Wmaybe-uninitialized" warnings in WebClipboardImpl, fixing build for ↵jesus.sanchez-palencia.fernandez.fil@intel.com2013-07-311-1/+1
| | | | | | | | | | | | | | | | gcc 4.8. Adding a default ui::Clipboard::Buffer value to buffer_type is harmless in WebClipboardImpl functions, since it will always be adjusted by ConvertBufferType() anyway. Contributed by jesus.sanchez-palencia.fernandez.fil@intel.com BUG= Review URL: https://chromiumcodereview.appspot.com/19478004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214868 0039d316-1c4b-4281-b951-d872f2087c98
* content: Migrate from googleurl/ includes to url/ ones.tfarina@chromium.org2013-07-091-1/+1
| | | | | | | | | BUG=229660 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/18868005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@210626 0039d316-1c4b-4281-b951-d872f2087c98
* Move WebDropData to content::DropData and split off conversion function.darin@chromium.org2013-07-011-2/+3
| | | | | | | | | | | | | The WebKit::WebDragData constructor is now provided by DropDataBuilder, which lives in content/renderer/. R=jam@chromium.org TBR=cevans@chromium.org BUG=237267 Review URL: https://chromiumcodereview.appspot.com/18281002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209408 0039d316-1c4b-4281-b951-d872f2087c98
* Move the following clipboard files from webkit\glue to content\renderer. ↵ananta@chromium.org2013-06-211-0/+254
These files now live in the content_renderer target. 1. scoped_clipboard_writer_glue.h 2. scoped_clipboard_writer_glue.cc 3. webclipboard_impl.cc 4. webclipboard_impl.h 5. clipboard_client.h I moved the static functions URLToMarkup and URLToImageMarkup out of the WebClipboardImpl class to the newly added webkit\renderer\clipboard_utils.cc/.h files as these functions are used by the MockWebClipboardImpl class which lives in webkit\support. This class is eventually used by the webkit_unit_tests target. Moving these functions out avoids the dependency on content in webkit_unit_tests. This is continuation of the ongoing work for bug https://code.google.com/p/chromium/issues/detail?can=2&q=237249 which is splitting chrome.dll into a browser and renderer component due to build issues on Windows. BUG=237249 R=jamesr@chromium.org Review URL: https://codereview.chromium.org/17420005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207657 0039d316-1c4b-4281-b951-d872f2087c98