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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/storage/
StorageArea.h 38 class LocalFrame;
59 unsigned length(ExceptionState&, LocalFrame* sourceFrame);
60 String key(unsigned index, ExceptionState&, LocalFrame* sourceFrame);
61 String getItem(const String& key, ExceptionState&, LocalFrame* sourceFrame);
62 void setItem(const String& key, const String& value, ExceptionState&, LocalFrame* sourceFrame);
63 void removeItem(const String& key, ExceptionState&, LocalFrame* sourceFrame);
64 void clear(ExceptionState&, LocalFrame* sourceFrame);
65 bool contains(const String& key, ExceptionState&, LocalFrame* sourceFrame);
67 bool canAccessStorage(LocalFrame*);
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIController.h 34 #include "core/frame/LocalFrame.h"
42 class MIDIController FINAL : public NoBaseWillBeGarbageCollectedFinalized<MIDIController>, public WillBeHeapSupplement<LocalFrame> {
52 static MIDIController* from(LocalFrame* frame) { return static_cast<MIDIController*>(WillBeHeapSupplement<LocalFrame>::from(frame, supplementName())); }
54 virtual void trace(Visitor* visitor) OVERRIDE { WillBeHeapSupplement<LocalFrame>::trace(visitor); }
  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.h 41 class LocalFrame;
71 void contentsSizeChanged(LocalFrame*, const IntSize&) const;
101 bool runBeforeUnloadConfirmPanel(const String& message, LocalFrame*);
105 void runJavaScriptAlert(LocalFrame*, const String&);
106 bool runJavaScriptConfirm(LocalFrame*, const String&);
107 bool runJavaScriptPrompt(LocalFrame*, const String& message, const String& defaultValue, String& result);
108 void setStatusbarText(LocalFrame*, const String&);
116 void print(LocalFrame*);
118 PassOwnPtr<ColorChooser> createColorChooser(LocalFrame*, ColorChooserClient*, const Color& initialColor);
122 void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>)
    [all...]
DragClient.h 37 class LocalFrame;
43 virtual void startDrag(DragImage*, const IntPoint& dragImageOrigin, const IntPoint& eventPos, DataTransfer*, LocalFrame*, bool linkDrag = false) = 0;
PageLifecycleObserver.h 34 class LocalFrame;
48 virtual void didCommitLoad(LocalFrame*) { }
PrintContext.h 34 class LocalFrame;
43 explicit PrintContext(LocalFrame*);
46 LocalFrame* frame() const { return m_frame; }
72 static String pageProperty(LocalFrame* frame, const char* propertyName, int pageNumber);
73 static bool isPageBoxVisible(LocalFrame* frame, int pageNumber);
74 static String pageSizeAndMarginsInPixels(LocalFrame* frame, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft);
75 static int numberOfPages(LocalFrame*, const FloatSize& pageSizeInPixels);
82 RawPtrWillBeMember<LocalFrame> m_frame;
ScopedPageLoadDeferrer.h 29 class LocalFrame;
47 WillBeHeapVector<RefPtrWillBeMember<LocalFrame>, 16> m_deferredFrames;
PageSerializer.h 47 class LocalFrame;
67 KURL urlForBlankFrame(LocalFrame*);
70 void serializeFrame(LocalFrame*);
87 HashMap<LocalFrame*, KURL> m_blankFrameURLs;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameClient.h 11 class LocalFrame;
28 virtual bool willCheckAndDispatchMessageEvent(SecurityOrigin* /*target*/, MessageEvent*, LocalFrame* /*sourceFrame*/) const { return false; }
LocalFrame.h 66 class LocalFrame : public Frame, public WillBeHeapSupplementable<LocalFrame> {
68 static PassRefPtrWillBeRawPtr<LocalFrame> create(FrameLoaderClient*, FrameHost*, FrameOwner*);
78 virtual ~LocalFrame();
113 // LocalFrame in this frame's in-process subtree. When user gesture tokens
115 LocalFrame* localFrameRoot();
117 // ======== All public functions below this point are candidates to move out of LocalFrame into another class. ========
161 LocalFrame(FrameLoaderClient*, FrameHost*, FrameOwner*);
189 inline void LocalFrame::init()
194 inline FrameLoader& LocalFrame::loader() cons
    [all...]
FrameConsole.h 52 static PassOwnPtrWillBeRawPtr<FrameConsole> create(LocalFrame& frame)
73 explicit FrameConsole(LocalFrame&);
75 LocalFrame& frame() const
81 RawPtrWillBeMember<LocalFrame> m_frame;
  /external/chromium_org/third_party/WebKit/Source/modules/donottrack/
NavigatorDoNotTrack.h 41 class LocalFrame;
57 explicit NavigatorDoNotTrack(LocalFrame*);
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileSystemClient.h 41 class LocalFrame;
55 void provideLocalFileSystemTo(LocalFrame&, PassOwnPtr<FileSystemClient>);
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeolocationClient.h 36 class LocalFrame;
56 void provideGeolocationTo(LocalFrame&, GeolocationClient*);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptEventListener.h 42 class LocalFrame;
47 PassRefPtr<V8LazyEventListener> createAttributeEventListener(LocalFrame*, const QualifiedName&, const AtomicString& value, const AtomicString& eventParameterName);
50 ScriptState* eventListenerHandlerScriptState(LocalFrame*, EventListener*);
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
DOMMimeType.h 35 class LocalFrame;
41 static PassRefPtrWillBeRawPtr<DOMMimeType> create(PassRefPtr<PluginData> pluginData, LocalFrame* frame, unsigned index)
57 DOMMimeType(PassRefPtr<PluginData>, LocalFrame*, unsigned index);
DOMMimeTypeArray.h 34 class LocalFrame;
41 static PassRefPtrWillBeRawPtr<DOMMimeTypeArray> create(LocalFrame* frame)
54 explicit DOMMimeTypeArray(LocalFrame*);
DOMPluginArray.h 34 class LocalFrame;
41 static PassRefPtrWillBeRawPtr<DOMPluginArray> create(LocalFrame* frame)
56 explicit DOMPluginArray(LocalFrame*);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
DummyPageHolder.h 46 class LocalFrame;
50 // Creates a dummy Page, LocalFrame, and FrameView whose clients are all no-op.
56 // Since DummyPageHolder stores empty clients in it, it must outlive the Page, LocalFrame, FrameView and any other objects
57 // created by it. DummyPageHolder's destructor ensures this condition by checking remaining references to the LocalFrame.
70 LocalFrame& frame() const;
78 RefPtrWillBePersistent<LocalFrame> m_frame;
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
NotificationController.h 29 #include "core/frame/LocalFrame.h"
38 class NotificationController FINAL : public NoBaseWillBeGarbageCollectedFinalized<NotificationController>, public WillBeHeapSupplement<LocalFrame> {
49 virtual void trace(Visitor* visitor) OVERRIDE { WillBeHeapSupplement<LocalFrame>::trace(visitor); }
59 void provideNotification(LocalFrame&, PassOwnPtr<NotificationClient>);
  /external/chromium_org/third_party/WebKit/Source/core/events/
NavigatorEvents.cpp 34 #include "core/frame/LocalFrame.h"
42 LocalFrame* frame = navigator.frame();
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.h 47 class LocalFrame;
88 static Vector<Document*> importsForFrame(LocalFrame*);
92 static PassRefPtr<SharedBuffer> resourceData(LocalFrame*, const KURL&, String* textEncodingName);
93 static Resource* cachedResource(LocalFrame*, const KURL&);
129 void didClearDocumentOfWindowObject(LocalFrame*);
130 void domContentLoadedEventFired(LocalFrame*);
131 void loadEventFired(LocalFrame*);
132 void didCommitLoad(LocalFrame*, DocumentLoader*);
133 void frameAttachedToParent(LocalFrame*);
134 void frameDetachedFromParent(LocalFrame*);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationScheduler.h 49 class LocalFrame;
75 explicit NavigationScheduler(LocalFrame*);
99 static bool mustLockBackForwardList(LocalFrame* targetFrame);
101 RawPtrWillBeMember<LocalFrame> m_frame;
  /external/chromium_org/third_party/WebKit/Source/core/testing/v8/
WebCoreTestSupport.h 38 class LocalFrame;
  /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
ScreenOrientationController.h 24 , public WillBeHeapSupplement<LocalFrame>
38 static void provideTo(LocalFrame&, WebScreenOrientationClient*);
39 static ScreenOrientationController* from(LocalFrame&);
45 explicit ScreenOrientationController(LocalFrame&, WebScreenOrientationClient*);

Completed in 1025 milliseconds

12 3 4 5 6 7 8 91011>>