| /external/chromium_org/third_party/WebKit/Source/core/page/ |
| DragData.h | 40 class LocalFrame; 69 PassRefPtrWillBeRawPtr<DocumentFragment> asFragment(LocalFrame*, PassRefPtrWillBeRawPtr<Range> context, bool allowPlainText, bool& chosePlainText) const;
|
| Chrome.cpp | 27 #include "core/frame/LocalFrame.h" 87 void Chrome::contentsSizeChanged(LocalFrame* frame, const IntSize& size) const 198 bool Chrome::runBeforeUnloadConfirmPanel(const String& message, LocalFrame* frame) 215 void Chrome::runJavaScriptAlert(LocalFrame* frame, const String& message) 232 bool Chrome::runJavaScriptConfirm(LocalFrame* frame, const String& message) 250 bool Chrome::runJavaScriptPrompt(LocalFrame* frame, const String& prompt, const String& defaultValue, String& result) 269 void Chrome::setStatusbarText(LocalFrame* frame, const String& status) 319 void Chrome::print(LocalFrame* frame) 333 PassOwnPtr<ColorChooser> Chrome::createColorChooser(LocalFrame* frame, ColorChooserClient* client, const Color& initialColor) 351 void Chrome::runOpenPanel(LocalFrame* frame, PassRefPtr<FileChooser> fileChooser [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/storage/ |
| StorageArea.cpp | 34 #include "core/frame/LocalFrame.h" 70 unsigned StorageArea::length(ExceptionState& exceptionState, LocalFrame* frame) 79 String StorageArea::key(unsigned index, ExceptionState& exceptionState, LocalFrame* frame) 88 String StorageArea::getItem(const String& key, ExceptionState& exceptionState, LocalFrame* frame) 97 void StorageArea::setItem(const String& key, const String& value, ExceptionState& exceptionState, LocalFrame* frame) 109 void StorageArea::removeItem(const String& key, ExceptionState& exceptionState, LocalFrame* frame) 118 void StorageArea::clear(ExceptionState& exceptionState, LocalFrame* frame) 127 bool StorageArea::contains(const String& key, ExceptionState& exceptionState, LocalFrame* frame) 136 bool StorageArea::canAccessStorage(LocalFrame* frame) 142 // reference to the LocalFrame. Should the LocalFrame die befor [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/timing/ |
| Performance.h | 63 static PassRefPtrWillBeRawPtr<Performance> create(LocalFrame* frame) 97 explicit Performance(LocalFrame*);
|
| /external/chromium_org/third_party/WebKit/Source/modules/geolocation/ |
| Geolocation.h | 46 class LocalFrame; 64 LocalFrame* frame() const;
|
| GeolocationController.cpp | 39 GeolocationController::GeolocationController(LocalFrame& frame, GeolocationClient* client) 102 PassOwnPtrWillBeRawPtr<GeolocationController> GeolocationController::create(LocalFrame& frame, GeolocationClient* client) 218 WillBeHeapSupplement<LocalFrame>::trace(visitor); 221 void provideGeolocationTo(LocalFrame& frame, GeolocationClient* client) 223 WillBeHeapSupplement<LocalFrame>::provideTo(frame, GeolocationController::supplementName(), GeolocationController::create(frame, client));
|
| NavigatorGeolocation.cpp | 27 #include "core/frame/LocalFrame.h" 33 NavigatorGeolocation::NavigatorGeolocation(LocalFrame* frame)
|
| /external/chromium_org/third_party/WebKit/Source/web/ |
| WebDataSourceImpl.h | 50 static PassRefPtr<WebDataSourceImpl> create(LocalFrame*, const ResourceRequest&, const SubstituteData&); 79 WebDataSourceImpl(LocalFrame*, const ResourceRequest&, const SubstituteData&);
|
| WebPageSerializer.cpp | 37 #include "core/frame/LocalFrame.h" 82 Vector<LocalFrame*>* visitedFrames, 83 Vector<LocalFrame*>* framesToVisit, 111 void retrieveResourcesForFrame(LocalFrame* frame, 113 Vector<LocalFrame*>* visitedFrames, 114 Vector<LocalFrame*>* framesToVisit, 216 Vector<LocalFrame*> framesToVisit; 217 Vector<LocalFrame*> visitedFrames; 224 LocalFrame* frame = framesToVisit[0];
|
| WebLocalFrameImpl.h | 34 #include "core/frame/LocalFrame.h" 239 PassRefPtrWillBeRawPtr<LocalFrame> initializeCoreFrame(FrameHost*, FrameOwner*, const AtomicString& name, const AtomicString& fallbackName); 241 PassRefPtrWillBeRawPtr<LocalFrame> createChildFrame(const FrameLoadRequest&, HTMLFrameOwnerElement*); 247 static WebLocalFrameImpl* fromFrame(LocalFrame*); 248 static WebLocalFrameImpl* fromFrame(LocalFrame&); 253 static WebPluginContainerImpl* pluginContainerFromFrame(LocalFrame*); 258 static WebPluginContainerImpl* pluginContainerFromNode(LocalFrame*, const WebNode&); 293 LocalFrame* frame() const { return m_frame.get(); } 302 static void selectWordAroundPosition(LocalFrame*, VisiblePosition); 325 void setCoreFrame(PassRefPtrWillBeRawPtr<LocalFrame>); [all...] |
| ColorChooserUIController.cpp | 40 ColorChooserUIController::ColorChooserUIController(LocalFrame* frame, ColorChooserClient* client)
|
| /external/chromium_org/third_party/WebKit/Source/core/loader/ |
| DocumentLoader.h | 56 class LocalFrame; 64 static PassRefPtr<DocumentLoader> create(LocalFrame* frame, const ResourceRequest& request, const SubstituteData& data) 70 LocalFrame* frame() const { return m_frame; } 134 DocumentLoader(LocalFrame*, const ResourceRequest&, const SubstituteData&); 175 LocalFrame* m_frame;
|
| FrameLoaderClient.h | 63 class LocalFrame; 94 virtual void dispatchDidCommitLoad(LocalFrame*, HistoryItem*, HistoryCommitType) = 0; 138 virtual PassRefPtr<DocumentLoader> createDocumentLoader(LocalFrame*, const ResourceRequest&, const SubstituteData&) = 0; 146 virtual PassRefPtrWillBeRawPtr<LocalFrame> createFrame(const KURL&, const AtomicString& name, const Referrer&, HTMLFrameOwnerElement*) = 0;
|
| /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
| PageScriptDebugServer.cpp | 43 #include "core/frame/LocalFrame.h" 57 static LocalFrame* retrieveFrameWithGlobalObjectCheck(v8::Handle<v8::Context> context) 174 RefPtrWillBeRawPtr<LocalFrame> protect(toDocument(executionContext)->frame()); 191 LocalFrame* frame = toDocument(executionContext)->frame(); 199 RefPtrWillBeRawPtr<LocalFrame> protect(frame); 210 LocalFrame* frame = retrieveFrameWithGlobalObjectCheck(context); 219 LocalFrame* frame = retrieveFrameWithGlobalObjectCheck(context); 240 LocalFrame* frame = retrieveFrameWithGlobalObjectCheck(eventContext); 270 bool PageScriptDebugServer::canPreprocess(LocalFrame* frame) 294 PassOwnPtr<ScriptSourceCode> PageScriptDebugServer::preprocess(LocalFrame* frame, const ScriptSourceCode& sourceCode [all...] |
| V8ErrorHandler.h | 41 class LocalFrame;
|
| /external/chromium_org/third_party/WebKit/Source/core/clipboard/ |
| DataTransfer.h | 46 class LocalFrame; 91 PassOwnPtr<DragImage> createDragImage(IntPoint& dragLocation, LocalFrame*) const; 94 void writeRange(Range*, LocalFrame*);
|
| /external/chromium_org/third_party/WebKit/Source/core/editing/ |
| TypingCommand.h | 68 static void closeTyping(LocalFrame*); 97 static PassRefPtrWillBeRawPtr<TypingCommand> lastTypingCommandIfStillOpenForTyping(LocalFrame*); 107 static void updateSelectionIfDifferentFromCurrentSelection(TypingCommand*, LocalFrame*);
|
| TextInsertionBaseCommand.h | 43 static void applyTextInsertionCommand(LocalFrame*, PassRefPtrWillBeRawPtr<TextInsertionBaseCommand>, const VisibleSelection& selectionForInsertion, const VisibleSelection& endingSelection);
|
| /external/chromium_org/third_party/WebKit/Source/core/css/ |
| StyleMedia.cpp | 33 #include "core/frame/LocalFrame.h" 37 StyleMedia::StyleMedia(LocalFrame* frame)
|
| /external/chromium_org/third_party/WebKit/Source/core/fetch/ |
| ResourceFetcherTest.cpp | 51 // Create a ResourceFetcher that has a real DocumentLoader and Document, but is not attached to a LocalFrame. 52 // Technically, we're concerned about what happens after a LocalFrame is detached (rather than before 58 EXPECT_EQ(fetcher->frame(), static_cast<LocalFrame*>(0));
|
| /external/chromium_org/third_party/WebKit/Source/core/html/ |
| LinkResource.h | 56 LocalFrame* loadingFrame() const;
|
| /external/chromium_org/third_party/WebKit/Source/core/html/imports/ |
| HTMLImport.h | 41 class LocalFrame;
|
| /external/chromium_org/third_party/WebKit/Source/core/plugins/ |
| DOMMimeType.cpp | 22 #include "core/frame/LocalFrame.h" 30 DOMMimeType::DOMMimeType(PassRefPtr<PluginData> pluginData, LocalFrame* frame, unsigned index)
|
| /external/chromium_org/third_party/WebKit/Source/modules/donottrack/ |
| NavigatorDoNotTrack.cpp | 34 #include "core/frame/LocalFrame.h" 40 NavigatorDoNotTrack::NavigatorDoNotTrack(LocalFrame* frame)
|
| /external/chromium_org/third_party/WebKit/Source/modules/presentation/ |
| NavigatorPresentation.cpp | 9 #include "core/frame/LocalFrame.h" 16 NavigatorPresentation::NavigatorPresentation(LocalFrame* frame)
|