Searched refs:Page (Results 1 - 25 of 437) sorted by relevance

1234567891011>>

/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage.py5 # TODO(eakuefner): Refactor references to Page and kill this hack.
8 Page = page.Page variable
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageLifecycleObserver.cpp30 #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
55 return static_cast<Page*>(lifecycleContext());
H A DPageLifecycleObserver.h35 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;
H A DPageAnimator.h13 class Page;
17 static PassRefPtrWillBeRawPtr<PageAnimator> create(Page&);
27 explicit PageAnimator(Page&);
29 RawPtrWillBeMember<Page> m_page;
H A DPageLifecycleNotifier.cpp32 PageLifecycleNotifier::PageLifecycleNotifier(Page* context)
33 : LifecycleNotifier<Page>(context)
44 LifecycleNotifier<Page>::addObserver(observer);
54 LifecycleNotifier<Page>::removeObserver(observer);
H A DScopedPageLoadDeferrer.cpp27 #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;
60 if (Page* page = m_deferredFrames[i]->page())
68 if (Page* page = m_deferredFrames[i]->page()) {
H A DScopedPageLoadDeferrer.h30 class Page;
35 ScopedPageLoadDeferrer(Page* exclusion = 0);
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dbluetooth_options.js6 /** @const */ var Page = cr.ui.pageManager.Page;
15 Page.call(this, 'bluetooth', '', 'bluetooth-container');
21 __proto__: Page.prototype,
H A Dfake_bluetooth_overlay_parent.js6 var Page = cr.ui.pageManager.Page;
14 Page.call(this, 'bluetooth', '', 'bluetooth-container');
20 // Inherit FakeBluetoothOverlayParent from Page.
21 __proto__: Page.prototype,
H A Dbrowser_options.js6 /** @const */ var Page = cr.ui.pageManager.Page;
15 Page.call(this, 'bluetooth', '', 'bluetooth-container');
21 __proto__: Page.prototype,
/external/chromium_org/chrome/browser/resources/options/
H A Dgeolocation_options.js6 var Page = cr.ui.pageManager.Page;
12 * @extends {cr.ui.pageManager.Page}
15 Page.call(this, 'geolocationOptions',
23 __proto__: Page.prototype
H A Dsupervised_user_learn_more.js6 var Page = cr.ui.pageManager.Page;
12 * @extends {cr.ui.pageManager.Page}
15 Page.call(this, 'supervisedUserLearnMore',
23 // Inherit from Page.
24 __proto__: Page.prototype,
28 Page.prototype.initializePage.call(this);
H A Dfactory_reset_overlay.js6 var Page = cr.ui.pageManager.Page;
15 Page.call(this, 'factoryResetData',
23 // Inherit FactoryResetOverlay from Page.
24 __proto__: Page.prototype,
28 Page.prototype.initializePage.call(this);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DPrerendererClient.h39 class Page;
42 class PrerendererClient : public WillBeHeapSupplement<Page> {
47 static PrerendererClient* from(Page*);
53 void providePrerendererClientTo(Page&, PrerendererClient*);
H A DPrerendererClient.cpp35 #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)
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerGlobalScopeProxyProvider.cpp34 #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);
H A DWorkerGlobalScopeProxyProvider.h40 class Page;
44 class WorkerGlobalScopeProxyProvider : public WillBeHeapSupplement<Page> {
52 static WorkerGlobalScopeProxyProvider* from(Page&);
56 void provideWorkerGlobalScopeProxyProviderTo(Page&, PassOwnPtrWillBeRawPtr<WorkerGlobalScopeProxyProvider>);
/external/chromium_org/tools/telemetry/unittest_data/pages/
H A Dexternal_page.py6 from telemetry.page.page import Page namespace
9 class ExternalPage(Page):
/external/chromium_org/third_party/WebKit/Source/modules/push_messaging/
H A DPushController.h8 #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*);
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceOrientationInspectorAgent.h14 class Page;
21 static void provideTo(Page&);
35 explicit DeviceOrientationInspectorAgent(Page&);
37 Page& m_page;
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDatabaseClient.h43 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/modules/quota/
H A DStorageQuotaClient.cpp35 #include "core/page/Page.h"
49 return static_cast<StorageQuotaClient*>(WillBeHeapSupplement<Page>::from(toDocument(context)->page(), supplementName()));
52 void provideStorageQuotaClientTo(Page& page, PassOwnPtrWillBeRawPtr<StorageQuotaClient> client)
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDevToolsAgentPrivate.h38 class Page;
53 virtual bool handleInputEvent(Page*, const WebInputEvent&) = 0;
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameHost.h45 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; }
72 // Corresponds to pixel density of the device where this Page i
[all...]
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DDummyPageHolder.h35 #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;

Completed in 764 milliseconds

1234567891011>>