HomeSort by relevance Sort by last modified time
    Searched refs:WebClipboard (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/content/test/
mock_webclipboard_impl.h 5 // This file mocks out just enough of the WebClipboard API for running the
16 #include "third_party/WebKit/public/platform/WebClipboard.h"
22 class MockWebClipboardImpl : public blink::WebClipboard {
27 virtual bool isFormatAvailable(blink::WebClipboard::Format format,
28 blink::WebClipboard::Buffer buffer);
30 blink::WebClipboard::Buffer buffer, bool* containsFilenames);
32 virtual blink::WebString readPlainText(blink::WebClipboard::Buffer buffer);
33 virtual blink::WebString readHTML(blink::WebClipboard::Buffer buffer,
37 virtual blink::WebData readImage(blink::WebClipboard::Buffer buffer);
38 virtual blink::WebString readCustomData(blink::WebClipboard::Buffer buffer
    [all...]
mock_webclipboard_impl.cc 89 blink::WebClipboard::Buffer buffer) {
95 blink::WebClipboard::Buffer buffer,
105 blink::WebClipboard::Buffer buffer) {
129 blink::WebClipboard::Buffer buffer,
test_webkit_platform_support.h 33 virtual blink::WebClipboard* clipboard();
test_webkit_platform_support.cc 119 blink::WebClipboard* TestWebKitPlatformSupport::clipboard() {
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Pasteboard.h 29 #include "public/platform/WebClipboard.h"
69 blink::WebClipboard::Buffer buffer() const { return m_buffer; }
74 blink::WebClipboard::Buffer m_buffer;
Pasteboard.cpp 55 : m_buffer(blink::WebClipboard::BufferStandard)
61 return m_buffer == blink::WebClipboard::BufferSelection;
66 m_buffer = selectionMode ? blink::WebClipboard::BufferSelection : blink::WebClipboard::BufferStandard;
100 return blink::Platform::current()->clipboard()->isFormatAvailable(blink::WebClipboard::FormatSmartPaste, m_buffer);
105 return blink::Platform::current()->clipboard()->isFormatAvailable(blink::WebClipboard::FormatHTML, m_buffer);
119 // fragmentStart and fragmentEnd are populated by WebClipboard::readHTML.
  /external/chromium_org/third_party/WebKit/public/platform/
WebClipboard.h 47 class WebClipboard {
93 ~WebClipboard() { }
Platform.h 57 class WebClipboard;
119 virtual WebClipboard* clipboard() { return 0; }
  /external/chromium/webkit/glue/
webclipboard_impl.h 8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebClipboard.h"
15 class WebClipboardImpl : public WebKit::WebClipboard {
24 // WebClipboard methods:
webclipboard_impl.cc 27 using WebKit::WebClipboard;
  /external/chromium_org/content/ppapi_plugin/
ppapi_webkitplatformsupport_impl.h 23 virtual blink::WebClipboard* clipboard();
ppapi_webkitplatformsupport_impl.cc 150 blink::WebClipboard* PpapiWebKitPlatformSupportImpl::clipboard() {
  /external/chromium_org/content/renderer/
webclipboard_impl.h 10 #include "third_party/WebKit/public/platform/WebClipboard.h"
18 class WebClipboardImpl : public blink::WebClipboard {
24 // WebClipboard methods:
renderer_webkitplatformsupport_impl.h 57 virtual blink::WebClipboard* clipboard();
webclipboard_impl.cc 27 using blink::WebClipboard;
renderer_webkitplatformsupport_impl.cc 237 blink::WebClipboard* RendererWebKitPlatformSupportImpl::clipboard() {
238 blink::WebClipboard* clipboard =
    [all...]
  /external/chromium_org/content/shell/renderer/
shell_content_renderer_client.h 52 virtual blink::WebClipboard* OverrideWebClipboard() OVERRIDE;
shell_content_renderer_client.cc 28 using blink::WebClipboard;
155 WebClipboard* ShellContentRendererClient::OverrideWebClipboard() {
  /external/chromium_org/content/public/renderer/
content_renderer_client.h 31 class WebClipboard;
155 // Allows the embedder to override the blink::WebClipboard used. If it
157 virtual blink::WebClipboard* OverrideWebClipboard();
content_renderer_client.cc 73 blink::WebClipboard* ContentRendererClient::OverrideWebClipboard() {
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ChromiumDataObjectItem.cpp 39 #include "public/platform/WebClipboard.h"
138 RefPtr<SharedBuffer> data = static_cast<PassRefPtr<SharedBuffer> >(blink::Platform::current()->clipboard()->readImage(blink::WebClipboard::BufferStandard));
159 blink::WebClipboard::Buffer buffer = Pasteboard::generalPasteboard()->buffer();
ChromiumDataObject.cpp 38 #include "public/platform/WebClipboard.h"
45 blink::WebClipboard::Buffer buffer = Pasteboard::generalPasteboard()->buffer();
  /external/chromium_org/content/worker/
worker_webkitplatformsupport_impl.h 41 virtual blink::WebClipboard* clipboard();
worker_webkitplatformsupport_impl.cc 36 using blink::WebClipboard;
99 WebClipboard* WorkerWebKitPlatformSupportImpl::clipboard() {
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebPluginContainerTest.cpp 50 #include "public/platform/WebClipboard.h"
176 EXPECT_EQ(WebString("x"), Platform::current()->clipboard()->readPlainText(WebClipboard::Buffer()));

Completed in 180 milliseconds