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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/web/
StorageClientImpl.h 19 virtual bool canAccessStorage(LocalFrame*, StorageType) const OVERRIDE;
FullscreenController.h 43 class LocalFrame;
74 RefPtrWillBeMember<LocalFrame> m_fullScreenFrame;
PopupMenuChromium.h 39 class LocalFrame;
46 PopupMenuChromium(LocalFrame&, PopupMenuClient*);
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageAnimator.h 12 class LocalFrame;
24 void updateLayoutAndStyleForPainting(LocalFrame* rootFrame);
ChromeClient.h 60 class LocalFrame;
91 virtual void focusedFrameChanged(LocalFrame*) = 0;
93 // The LocalFrame pointer provides the ChromeClient with context about which
94 // LocalFrame wants to create the new Page. Also, the newly created window
99 virtual Page* createWindow(LocalFrame*, const FrameLoadRequest&, const WindowFeatures&, NavigationPolicy, ShouldSendReferrer) = 0;
120 virtual void addMessageToConsole(LocalFrame*, MessageSource, MessageLevel, const String& message, unsigned lineNumber, const String& sourceID, const String& stackTrace) = 0;
123 virtual bool runBeforeUnloadConfirmPanel(const String& message, LocalFrame*) = 0;
127 virtual void runJavaScriptAlert(LocalFrame*, const String&) = 0;
128 virtual bool runJavaScriptConfirm(LocalFrame*, const String&) = 0;
129 virtual bool runJavaScriptPrompt(LocalFrame*, const String& message, const String& defaultValue, String& result) = 0
    [all...]
SpatialNavigation.h 32 class LocalFrame;
46 bool isSpatialNavigationEnabled(const LocalFrame*);
132 bool scrollInDirection(LocalFrame*, FocusType);
135 bool canScrollInDirection(const LocalFrame*, FocusType);
141 LayoutRect frameRectInAbsoluteCoordinates(LocalFrame*);
ContextMenuController.h 43 class LocalFrame;
60 void showContextMenuAtPoint(LocalFrame*, float x, float y, PassRefPtr<ContextMenuProvider>);
70 PassOwnPtr<ContextMenu> createContextMenu(LocalFrame*, const LayoutPoint&);
PageLifecycleNotifier.h 37 class LocalFrame;
44 void notifyDidCommitLoad(LocalFrame*);
68 inline void PageLifecycleNotifier::notifyDidCommitLoad(LocalFrame* frame)
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
NavigatorGeolocation.h 29 class LocalFrame;
45 NavigatorGeolocation(LocalFrame*);
GeolocationController.h 29 #include "core/frame/LocalFrame.h"
43 class GeolocationController FINAL : public NoBaseWillBeGarbageCollectedFinalized<GeolocationController>, public WillBeHeapSupplement<LocalFrame>, public PageLifecycleObserver {
49 static PassOwnPtrWillBeRawPtr<GeolocationController> create(LocalFrame&, GeolocationClient*);
70 static GeolocationController* from(LocalFrame* frame) { return static_cast<GeolocationController*>(WillBeHeapSupplement<LocalFrame>::from(frame, supplementName())); }
76 GeolocationController(LocalFrame&, GeolocationClient*);
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
NotificationPermissionClient.cpp 10 #include "core/frame/LocalFrame.h"
30 return static_cast<NotificationPermissionClient*>(WillBeHeapSupplement<LocalFrame>::from(document->frame(), supplementName()));
33 void provideNotificationPermissionClientTo(LocalFrame& frame, PassOwnPtrWillBeRawPtr<NotificationPermissionClient> client)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentInit.h 43 class LocalFrame;
50 explicit DocumentInit(const KURL& = KURL(), LocalFrame* = 0, WeakPtrWillBeRawPtr<Document> = nullptr, HTMLImportsController* = 0);
55 LocalFrame* frame() const { return m_frame; }
68 LocalFrame* ownerFrame() const;
79 LocalFrame* frameForSecurityContext() const;
82 RawPtrWillBeMember<LocalFrame> m_frame;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
MixedContentChecker.h 41 class LocalFrame;
49 explicit MixedContentChecker(LocalFrame*);
51 static bool shouldBlockFetch(LocalFrame*, const ResourceRequest&, const KURL&);
68 static void checkMixedPrivatePublic(LocalFrame*, const AtomicString& resourceIPAddress);
89 static void logToConsole(LocalFrame*, const KURL&, WebURLRequest::RequestContext, bool allowed);
100 RawPtrWillBeMember<LocalFrame> m_frame;
TextResourceDecoderBuilder.cpp 35 #include "core/frame/LocalFrame.h"
41 static inline bool canReferToParentFrameEncoding(const LocalFrame* frame, const LocalFrame* parentFrame)
60 if (LocalFrame* frame = document->frame()) {
70 LocalFrame* frame = document->frame();
71 LocalFrame* parentFrame = 0;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalFrame.cpp 31 #include "core/frame/LocalFrame.h"
76 static inline float parentPageZoomFactor(LocalFrame* frame)
84 static inline float parentTextZoomFactor(LocalFrame* frame)
92 inline LocalFrame::LocalFrame(FrameLoaderClient* client, FrameHost* host, FrameOwner* owner)
109 PassRefPtrWillBeRawPtr<LocalFrame> LocalFrame::create(FrameLoaderClient* client, FrameHost* host, FrameOwner* owner)
111 RefPtrWillBeRawPtr<LocalFrame> frame = adoptRefWillBeNoop(new LocalFrame(client, host, owner));
116 LocalFrame::~LocalFrame(
    [all...]
History.h 40 class LocalFrame;
49 static PassRefPtrWillBeRawPtr<History> create(LocalFrame* frame)
69 explicit History(LocalFrame*);
Navigator.h 40 class LocalFrame;
56 static PassRefPtrWillBeRawPtr<Navigator> create(LocalFrame* frame)
83 explicit Navigator(LocalFrame*);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InputMethodController.h 37 class LocalFrame;
49 static PassOwnPtrWillBeRawPtr<InputMethodController> create(LocalFrame&);
98 RawPtrWillBeMember<LocalFrame> m_frame;
107 explicit InputMethodController(LocalFrame&);
110 LocalFrame& frame() const
EditorCommand.cpp 54 #include "core/frame/LocalFrame.h"
75 bool (*execute)(LocalFrame&, Event*, EditorCommandSource, const String&);
76 bool (*isSupportedFromDOM)(LocalFrame*);
77 bool (*isEnabled)(LocalFrame&, Event*, EditorCommandSource);
78 TriState (*state)(LocalFrame&, Event*);
79 String (*value)(LocalFrame&, Event*);
95 static LocalFrame* targetFrame(LocalFrame& frame, Event* event)
105 static bool applyCommandToFrame(LocalFrame& frame, EditorCommandSource source, EditAction action, StylePropertySet* style)
121 static bool executeApplyStyle(LocalFrame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const String& pro (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInstrumentationCustomInl.h 40 PassOwnPtr<ScriptSourceCode> preprocessImpl(InstrumentingAgents*, LocalFrame*, const ScriptSourceCode&);
41 String preprocessEventListenerImpl(InstrumentingAgents*, LocalFrame*, const String& source, const String& url, const String& functionName);
48 inline bool isDebuggerPaused(LocalFrame* frame)
64 inline String preprocessEventListener(LocalFrame* frame, const String& source, const String& url, const String& functionName)
72 inline PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame* frame, const ScriptSourceCode& sourceCode)
ConsoleMessageStorage.h 26 static PassOwnPtrWillBeRawPtr<ConsoleMessageStorage> createForFrame(LocalFrame* frame)
48 explicit ConsoleMessageStorage(LocalFrame*);
55 RawPtrWillBeMember<LocalFrame> m_frame;
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaValuesDynamic.h 17 static PassRefPtr<MediaValues> create(LocalFrame*);
41 MediaValuesDynamic(LocalFrame*);
45 // FIXME: Oilpan: This raw ptr should be changed to a Member when LocalFrame is migrated to the heap.
46 LocalFrame* m_frame;
  /external/chromium_org/third_party/WebKit/Source/core/loader/appcache/
ApplicationCache.h 40 class LocalFrame;
47 static PassRefPtrWillBeRawPtr<ApplicationCache> create(LocalFrame* frame)
84 explicit ApplicationCache(LocalFrame*);
  /external/chromium_org/third_party/WebKit/Source/core/timing/
PerformanceTiming.h 45 class LocalFrame;
52 static PassRefPtrWillBeRawPtr<PerformanceTiming> create(LocalFrame* frame)
82 explicit PerformanceTiming(LocalFrame*);
  /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
ScreenOrientation.h 19 class LocalFrame;
32 static ScreenOrientation* create(LocalFrame*);
57 explicit ScreenOrientation(LocalFrame*);

Completed in 829 milliseconds

1 23 4 5 6 7 8 91011>>