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

  /external/chromium/chrome/browser/ui/cocoa/download/
download_util_mac.h 17 void AddFileToPasteboard(NSPasteboard* pasteboard, const FilePath& path);
  /external/chromium_org/chrome/browser/ui/cocoa/download/
download_util_mac.h 18 void AddFileToPasteboard(NSPasteboard* pasteboard, const base::FilePath& path);
  /external/chromium_org/webkit/support/mac/
DumpRenderTreePasteboard.m 58 // Return a local pasteboard so we don't disturb the real pasteboards when running tests.
66 LocalPasteboard *pasteboard = [localPasteboards objectForKey:name];
67 if (pasteboard)
68 return pasteboard;
69 pasteboard = [[LocalPasteboard alloc] init];
70 [localPasteboards setObject:pasteboard forKey:name];
71 [pasteboard release];
72 return pasteboard;
143 if (newOwner && [newOwner respondsToSelector:@selector(pasteboard:provideDataForType:)])
144 [newOwner pasteboard:self provideDataForType:setType]
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_drag_source.h 21 // contentsView and with the given dropData and pboard). Fill the pasteboard
27 pasteboard:(NSPasteboard*)pboard
  /external/chromium/chrome/browser/ui/cocoa/tab_contents/
web_contents_drag_source.h 24 // Our pasteboard.
32 // contentsView and with the given dropData and pboard). Fill the pasteboard
35 pasteboard:(NSPasteboard*)pboard
41 // Put the data being dragged onto the pasteboard. Implemented by the
52 // End the drag and clear the pasteboard; hook up to
web_drag_source.h 31 // Our pasteboard.
45 // contentsView and with the given dropData and pboard). Fill the pasteboard
51 pasteboard:(NSPasteboard*)pboard
57 // Call when asked to do a lazy write to the pasteboard; hook up to
58 // -pasteboard:provideDataForType: (on the contentsView).
66 // End the drag and clear the pasteboard; hook up to
  /external/chromium_org/content/browser/web_contents/
web_drag_source_mac.h 39 // Our pasteboard.
56 // contentsView and with the given dropData and pboard). Fill the pasteboard
63 pasteboard:(NSPasteboard*)pboard
72 // Call when asked to do a lazy write to the pasteboard; hook up to
73 // -pasteboard:provideDataForType: (on the contentsView).
81 // End the drag and clear the pasteboard; hook up to
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
PasteboardChromium.cpp 32 #include "core/platform/Pasteboard.h"
57 Pasteboard* Pasteboard::generalPasteboard()
59 static Pasteboard* pasteboard = new Pasteboard; local
60 return pasteboard;
63 Pasteboard::Pasteboard()
68 void Pasteboard::clear(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Editor.cpp 75 #include "core/platform/Pasteboard.h"
364 pasteAsPlainTextWithPasteboard(Pasteboard::generalPasteboard());
367 void Editor::pasteAsPlainTextWithPasteboard(Pasteboard* pasteboard)
369 String text = pasteboard->plainText(m_frame);
371 pasteAsPlainText(text, canSmartReplaceWithPasteboard(pasteboard));
374 void Editor::pasteWithPasteboard(Pasteboard* pasteboard, bool allowPlainText)
378 RefPtr<DocumentFragment> fragment = pasteboard->documentFragment(m_frame, range, allowPlainText, chosePlainText);
380 pasteAsFragment(fragment, canSmartReplaceWithPasteboard(pasteboard), chosePlainText)
620 Pasteboard* pasteboard = Pasteboard::generalPasteboard(); local
    [all...]

Completed in 185 milliseconds