HomeSort by relevance Sort by last modified time
    Searched refs:LocalFrame (Results 126 - 150 of 444) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationScheduler.cpp 38 #include "core/frame/LocalFrame.h"
73 virtual void fire(LocalFrame*) = 0;
75 virtual bool shouldStartTimer(LocalFrame*) { return true; }
111 virtual void fire(LocalFrame* frame) OVERRIDE
139 virtual bool shouldStartTimer(LocalFrame* frame) OVERRIDE { return frame->loader().allAncestorsAreComplete(); }
141 virtual void fire(LocalFrame* frame) OVERRIDE
166 virtual void fire(LocalFrame* frame) OVERRIDE
180 virtual void fire(LocalFrame* frame) OVERRIDE
199 virtual void fire(LocalFrame* frame) OVERRIDE
220 virtual void fire(LocalFrame* frame) OVERRID
    [all...]
BeaconLoader.cpp 12 #include "core/frame/LocalFrame.h"
22 void BeaconLoader::prepareRequest(LocalFrame* frame, ResourceRequest& request)
32 void BeaconLoader::issueRequest(LocalFrame* frame, ResourceRequest& request)
40 bool BeaconLoader::sendBeacon(LocalFrame* frame, int allowance, const KURL& beaconURL, const String& data, int& payloadLength)
58 bool BeaconLoader::sendBeacon(LocalFrame* frame, int allowance, const KURL& beaconURL, PassRefPtr<ArrayBufferView>& data, int& payloadLength)
80 bool BeaconLoader::sendBeacon(LocalFrame* frame, int allowance, const KURL& beaconURL, PassRefPtrWillBeRawPtr<Blob>& data, int& payloadLength)
108 bool BeaconLoader::sendBeacon(LocalFrame* frame, int allowance, const KURL& beaconURL, PassRefPtrWillBeRawPtr<DOMFormData>& data, int& payloadLength)
FrameLoader.h 73 FrameLoader(LocalFrame*);
78 LocalFrame* frame() const { return m_frame; }
88 static void reportLocalLoadFailed(LocalFrame*, const String& url);
91 // Warning: stopAllLoaders can and will detach the LocalFrame out from under you. All callers need to either protect the LocalFrame
92 // or guarantee they won't in any way access the LocalFrame after stopAllLoaders returns.
153 void setOpener(LocalFrame*);
165 LocalFrame* findFrameForNavigation(const AtomicString& name, Document* activeDocument);
221 RawPtrWillBeMember<LocalFrame> m_frame;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorTraceEvents.h 22 class LocalFrame;
51 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long identifier, LocalFrame*, const ResourceRequest&);
56 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long identifier, LocalFrame*, const ResourceResponse&);
61 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long identifier, LocalFrame*, int encodedDataLength);
144 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(LocalFrame*);
154 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(LocalFrame*, const String& url, int lineNumber);
InspectorTimelineAgent.h 63 class LocalFrame;
151 void didInvalidateLayout(LocalFrame*);
152 bool willLayout(LocalFrame*);
188 bool willEvaluateScript(LocalFrame*, const String&, int);
192 void domContentLoadedEventFired(LocalFrame*);
193 void loadEventFired(LocalFrame*);
201 void didReceiveResourceResponse(LocalFrame*, unsigned long, DocumentLoader*, const ResourceResponse&, ResourceLoader*);
204 void didReceiveData(LocalFrame*, unsigned long identifier, const char* data, int dataLength, int encodedDataLength);
258 void appendRecord(PassRefPtr<JSONObject> data, const String& type, bool captureCallStack, LocalFrame*);
259 void pushCurrentRecord(PassRefPtr<JSONObject> data, const String& type, bool captureCallStack, LocalFrame*, bool hasLowLevelDetails = false)
    [all...]
InspectorCanvasAgent.h 45 class LocalFrame;
68 void didCommitLoad(LocalFrame*, DocumentLoader*);
69 void frameDetachedFromParent(LocalFrame*);
105 typedef HashMap<LocalFrame*, bool> FramesWithUninstrumentedCanvases;
InspectorApplicationCacheAgent.h 36 class LocalFrame;
60 void updateApplicationCacheStatus(LocalFrame*);
InspectorDOMStorageAgent.h 40 class LocalFrame;
77 PassOwnPtrWillBeRawPtr<StorageArea> findStorageArea(ErrorString*, const RefPtr<JSONObject>&, LocalFrame*&);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
PageScriptDebugServer.h 72 virtual PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&) OVERRIDE;
73 virtual String preprocessEventListener(LocalFrame*, const String& source, const String& url, const String& functionName) OVERRIDE;
95 bool canPreprocess(LocalFrame*);
ScriptPreprocessor.h 47 ScriptPreprocessor(const ScriptSourceCode&, LocalFrame*);
V8EventListener.h 41 class LocalFrame;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Touch.h 41 class LocalFrame;
46 static PassRefPtrWillBeRawPtr<Touch> create(LocalFrame* frame, EventTarget* target,
79 Touch(LocalFrame* frame, EventTarget* target, unsigned identifier,
DOMImplementation.h 36 class LocalFrame;
66 static PassRefPtrWillBeRawPtr<Document> createDocument(const String& mimeType, LocalFrame*, const KURL&, bool inViewSourceMode);
Touch.cpp 31 #include "core/frame/LocalFrame.h"
36 static FloatPoint contentsOffset(LocalFrame* frame)
47 Touch::Touch(LocalFrame* frame, EventTarget* target, unsigned identifier, const FloatPoint& screenPos, const FloatPoint& pagePos, const FloatSize& radius, float rotationAngle, float force)
  /external/chromium_org/third_party/WebKit/Source/core/storage/
Storage.h 41 class LocalFrame;
48 static PassRefPtrWillBeRawPtr<Storage> create(LocalFrame*, PassOwnPtrWillBeRawPtr<StorageArea>);
72 Storage(LocalFrame*, PassOwnPtrWillBeRawPtr<StorageArea>);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
BarProp.cpp 34 #include "core/frame/LocalFrame.h"
38 BarProp::BarProp(LocalFrame* frame, Type type)
DOMWindowProperty.cpp 31 #include "core/frame/LocalFrame.h"
35 DOMWindowProperty::DOMWindowProperty(LocalFrame* frame)
65 // created with a LocalFrame and it should still have it.
82 // created with a LocalFrame and it should still have it.
  /external/chromium_org/third_party/WebKit/Source/core/timing/
PerformanceNavigation.cpp 34 #include "core/frame/LocalFrame.h"
40 PerformanceNavigation::PerformanceNavigation(LocalFrame* frame)
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIController.cpp 69 void provideMIDITo(LocalFrame& frame, PassOwnPtr<MIDIClient> client)
  /external/chromium_org/third_party/WebKit/Source/web/
ColorChooserPopupUIController.h 42 ColorChooserPopupUIController(LocalFrame*, ChromeClientImpl*, ColorChooserClient*);
PopupMenuChromium.cpp 36 #include "core/frame/LocalFrame.h"
42 PopupMenuChromium::PopupMenuChromium(LocalFrame& frame, PopupMenuClient* client)
RemoteFrameClient.h 29 virtual bool willCheckAndDispatchMessageEvent(SecurityOrigin*, MessageEvent*, LocalFrame*) const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaValuesCached.h 53 static PassRefPtr<MediaValues> create(LocalFrame*);
79 MediaValuesCached(LocalFrame*);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Caret.h 36 class LocalFrame;
86 void paintDragCaret(LocalFrame*, GraphicsContext*, const LayoutPoint&, const LayoutRect& clipRect) const;
Editor.h 48 class LocalFrame;
63 static PassOwnPtrWillBeRawPtr<Editor> create(LocalFrame&);
128 Command(const EditorInternalCommand*, EditorCommandSource, PassRefPtrWillBeRawPtr<LocalFrame>);
144 LocalFrame& frame() const
152 RefPtrWillBeMember<LocalFrame> m_frame;
240 RawPtrWillBeMember<LocalFrame> m_frame;
251 explicit Editor(LocalFrame&);
253 LocalFrame& frame() const

Completed in 1063 milliseconds

1 2 3 4 56 7 8 91011>>