HomeSort by relevance Sort by last modified time
    Searched refs:Page (Results 1 - 25 of 408) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/page/
PageLifecycleObserver.h 35 class Page;
37 template<> void observerContext(Page*, LifecycleObserver<Page>*);
38 template<> void unobserverContext(Page*, LifecycleObserver<Page>*);
40 class PageLifecycleObserver : public LifecycleObserver<Page> {
42 explicit PageLifecycleObserver(Page*);
45 Page* page() const;
PageLifecycleObserver.cpp 28 #include "core/page/PageLifecycleObserver.h"
30 #include "core/page/Page.h"
34 template<> void observerContext(Page* context, LifecycleObserver<Page>* observer)
39 template<> void unobserverContext(Page* context, LifecycleObserver<Page>* observer)
44 PageLifecycleObserver::PageLifecycleObserver(Page* page)
45 : LifecycleObserver<Page>(page, PageLifecycleObserverType
53 Page* PageLifecycleObserver::page() const function in class:blink::PageLifecycleObserver
    [all...]
PageAnimator.h 13 class Page;
17 static PassRefPtrWillBeRawPtr<PageAnimator> create(Page&);
27 explicit PageAnimator(Page&);
29 RawPtrWillBeMember<Page> m_page;
PageLifecycleNotifier.cpp 28 #include "core/page/PageLifecycleNotifier.h"
32 PageLifecycleNotifier::PageLifecycleNotifier(Page* context)
33 : LifecycleNotifier<Page>(context)
44 LifecycleNotifier<Page>::addObserver(observer);
54 LifecycleNotifier<Page>::removeObserver(observer);
ScopedPageLoadDeferrer.cpp 22 #include "core/page/ScopedPageLoadDeferrer.h"
27 #include "core/page/Page.h"
32 ScopedPageLoadDeferrer::ScopedPageLoadDeferrer(Page* exclusion)
34 const HashSet<Page*>& pages = Page::ordinaryPages();
36 HashSet<Page*>::const_iterator end = pages.end();
37 for (HashSet<Page*>::const_iterator it = pages.begin(); it != end; ++it) {
38 Page* page = *it local
    [all...]
ScopedPageLoadDeferrer.h 30 class Page;
35 ScopedPageLoadDeferrer(Page* exclusion = 0);
  /external/chromium_org/tools/telemetry/telemetry/page/
page.py 5 # TODO(eakuefner): Refactor references to Page and kill this hack.
6 from telemetry import page namespace
8 Page = page.Page
  /external/chromium_org/third_party/WebKit/Source/core/loader/
PrerendererClient.h 39 class Page;
42 class PrerendererClient : public WillBeHeapSupplement<Page> {
47 static PrerendererClient* from(Page*);
53 void providePrerendererClientTo(Page&, PrerendererClient*);
PrerendererClient.cpp 35 #include "core/page/Page.h"
46 PrerendererClient* PrerendererClient::from(Page* page)
48 PrerendererClient* supplement = static_cast<PrerendererClient*>(WillBeHeapSupplement<Page>::from(page, supplementName()));
52 void providePrerendererClientTo(Page& page, PrerendererClient* client)
54 PrerendererClient::provideTo(page, PrerendererClient::supplementName(), adoptPtrWillBeNoop(client));
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerGlobalScopeProxyProvider.cpp 34 #include "core/page/Page.h"
38 WorkerGlobalScopeProxyProvider* WorkerGlobalScopeProxyProvider::from(Page& page)
40 return static_cast<WorkerGlobalScopeProxyProvider*>(WillBeHeapSupplement<Page>::from(page, supplementName()));
48 void provideWorkerGlobalScopeProxyProviderTo(Page& page, PassOwnPtrWillBeRawPtr<WorkerGlobalScopeProxyProvider> provider)
50 WillBeHeapSupplement<Page>::provideTo(page, WorkerGlobalScopeProxyProvider::supplementName(), provider)
    [all...]
WorkerGlobalScopeProxyProvider.h 40 class Page;
44 class WorkerGlobalScopeProxyProvider : public WillBeHeapSupplement<Page> {
52 static WorkerGlobalScopeProxyProvider* from(Page&);
56 void provideWorkerGlobalScopeProxyProviderTo(Page&, PassOwnPtrWillBeRawPtr<WorkerGlobalScopeProxyProvider>);
  /external/chromium_org/third_party/WebKit/Source/modules/push_messaging/
PushController.h 8 #include "core/page/Page.h"
18 class PushController FINAL : public NoBaseWillBeGarbageCollected<PushController>, public WillBeHeapSupplement<Page> {
25 static PushController* from(Page* page) { return static_cast<PushController*>(WillBeHeapSupplement<Page>::from(page, supplementName())); }
26 static WebPushClient* clientFrom(Page*);
30 virtual void trace(Visitor* visitor) OVERRIDE { WillBeHeapSupplement<Page>::trace(visitor); }
38 void providePushControllerTo(Page&, WebPushClient*)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebDevToolsAgentPrivate.h 38 class Page;
53 virtual bool handleInputEvent(Page*, const WebInputEvent&) = 0;
  /external/chromium_org/tools/telemetry/unittest_data/pages/
external_page.py 6 from telemetry.page.page import Page
9 class ExternalPage(Page):
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceOrientationInspectorAgent.h 14 class Page;
21 static void provideTo(Page&);
35 explicit DeviceOrientationInspectorAgent(Page&);
37 Page& m_page;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameHost.h 45 class Page;
53 // FrameHost currently corresponds to the Page object in core/page
54 // however the concept of a Page is moving up out of Blink.
55 // In an out-of-process iframe world, a single Page may have
56 // multiple frames in different process, thus Page becomes a
58 // Separating Page from the rest of core/ through this indirection
59 // allows us to slowly refactor Page without breaking the rest of core.
63 static PassOwnPtrWillBeRawPtr<FrameHost> create(Page&);
67 Page& page() const { return *m_page; function in class:blink::FINAL
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
DummyPageHolder.h 35 #include "core/page/Page.h"
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
65 Page::PageClients* = 0,
69 Page& page() const;
75 DummyPageHolder(const IntSize& initialViewSize, Page::PageClients*, PassOwnPtr<FrameLoaderClient>);
77 OwnPtrWillBePersistent<Page> m_page;
80 Page::PageClients m_pageClients
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeysController.h 8 #include "core/page/Page.h"
17 class MediaKeysController FINAL : public NoBaseWillBeGarbageCollected<MediaKeysController>, public WillBeHeapSupplement<Page> {
22 static void provideMediaKeysTo(Page&, MediaKeysClient*);
23 static MediaKeysController* from(Page* page) { return static_cast<MediaKeysController*>(WillBeHeapSupplement<Page>::from(page, supplementName())); }
25 virtual void trace(Visitor* visitor) OVERRIDE { WillBeHeapSupplement<Page>::trace(visitor); }
MediaKeysClient.h 14 class Page;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorFrontendHost.h 43 class Page;
48 static PassRefPtrWillBeRawPtr<InspectorFrontendHost> create(InspectorFrontendClient* client, Page* frontendPage)
66 void showContextMenu(Page*, float x, float y, const Vector<ContextMenuItem>& items);
76 Page* frontendPage() { return m_frontendPage; }
80 InspectorFrontendHost(InspectorFrontendClient* client, Page* frontendPage);
83 RawPtrWillBeMember<Page> m_frontendPage;
PageConsoleAgent.h 41 class Page;
46 static PassOwnPtrWillBeRawPtr<PageConsoleAgent> create(InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent, InspectorTimelineAgent* timelineAgent, Page* page)
48 return adoptPtrWillBeNoop(new PageConsoleAgent(injectedScriptManager, domAgent, timelineAgent, page));
59 PageConsoleAgent(InjectedScriptManager*, InspectorDOMAgent*, InspectorTimelineAgent*, Page*);
64 RawPtrWillBeMember<Page> m_page;
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageQuotaClient.h 42 class Page;
48 class StorageQuotaClient : public WillBeHeapSupplement<Page> {
61 void provideStorageQuotaClientTo(Page&, PassOwnPtrWillBeRawPtr<StorageQuotaClient>);
  /external/chromium_org/third_party/WebKit/Source/modules/credentialmanager/
CredentialManagerClient.h 16 class Page;
20 // CredentialManagerClient lives as a supplement to Page, and wraps the embedder-provided
22 class CredentialManagerClient FINAL : public NoBaseWillBeGarbageCollectedFinalized<CredentialManagerClient>, public WillBeHeapSupplement<Page> {
29 static CredentialManagerClient* from(Page*);
43 void provideCredentialManagerClientTo(Page&, CredentialManagerClient*);
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseClient.h 43 class Page;
45 class DatabaseClient : public WillBeHeapSupplement<Page> {
58 void createInspectorAgentFor(Page*);
64 void provideDatabaseClientTo(Page&, PassOwnPtrWillBeRawPtr<DatabaseClient>);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContextFeatures.h 36 class Page;
39 class ContextFeatures FINAL : public GarbageCollectedFinalized<ContextFeatures>, public HeapSupplement<Page> {
42 typedef HeapSupplement<Page> SupplementType;
44 class ContextFeatures : public RefCountedSupplement<Page, ContextFeatures> {
46 typedef RefCountedSupplement<Page, ContextFeatures> SupplementType;
67 virtual void trace(Visitor* visitor) OVERRIDE { HeapSupplement<Page>::trace(visitor); }
88 void provideContextFeaturesTo(Page&, PassOwnPtr<ContextFeaturesClient>);
89 void provideContextFeaturesToDocumentFrom(Document&, Page&);

Completed in 1033 milliseconds

1 2 3 4 5 6 7 8 91011>>