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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/page/
Page.cpp 21 #include "core/page/Page.h"
36 #include "core/page/AutoscrollController.h"
37 #include "core/page/Chrome.h"
38 #include "core/page/ContextMenuController.h"
39 #include "core/page/DOMTimer.h"
40 #include "core/page/DragController.h"
41 #include "core/page/FocusController.h"
42 #include "core/page/Frame.h"
43 #include "core/page/FrameTree.h
341 Page* page = *it; local
478 Page* page = *it; local
494 Page* page = *it; local
    [all...]
PageGroupLoadDeferrer.cpp 22 #include "core/page/PageGroupLoadDeferrer.h"
26 #include "core/page/Frame.h"
27 #include "core/page/Page.h"
28 #include "core/page/PageGroup.h"
35 PageGroupLoadDeferrer::PageGroupLoadDeferrer(Page* page, bool deferSelf)
37 const HashSet<Page*>& pages = page->group().pages();
39 HashSet<Page*>::const_iterator end = pages.end()
    [all...]
SpeechInput.h 36 #include "core/page/Page.h"
37 #include "core/page/SpeechInputListener.h"
52 public Supplement<Page> {
59 static SpeechInput* from(Page* page) { return static_cast<SpeechInput*>(Supplement<Page>::from(page, supplementName())); }
DeviceController.h 31 #include "core/page/DOMWindow.h"
39 class Page;
41 class DeviceController : public Supplement<Page> {
PageSerializer.h 46 class Page;
53 // This class is used to serialize a page contents back to text (typically HTML).
54 // It serializes all the page frames and retrieves resources such as images and CSS stylesheets.
59 // Initiates the serialization of the frame's page. All serialized content and retrieved
62 void serialize(Page*);
  /external/v8/test/cctest/
test-spaces.cc 38 Page* p = Page::FromAddress(page_start);
40 p->SetRegionMarks(Page::kAllRegionsCleanMarks);
45 CHECK(!Page::FromAddress(addr)->IsRegionDirty(addr));
51 Page::FromAddress(addr)->MarkRegionDirty(addr);
57 CHECK(Page::FromAddress(addr)->IsRegionDirty(addr));
66 TEST(Page) {
67 byte* mem = NewArray<byte>(2*Page::kPageSize);
71 Address page_start = RoundUp(start, Page::kPageSize);
73 Page* p = Page::FromAddress(page_start)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
UserMediaController.h 28 #include "core/page/Page.h"
36 class UserMediaController : public Supplement<Page> {
46 static UserMediaController* from(Page* page) { return static_cast<UserMediaController*>(Supplement<Page>::from(page, supplementName())); }
  /external/chromium_org/third_party/WebKit/Source/modules/vibration/
NavigatorVibration.h 23 #include "core/page/Page.h"
24 #include "core/page/PageLifecycleObserver.h"
35 : public Supplement<Page>
53 static NavigatorVibration* from(Page*);
56 explicit NavigatorVibration(Page*);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.h 41 class Page;
48 static PassOwnPtr<InspectorInputAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, Page* page, InspectorClient* client)
50 return adoptPtr(new InspectorInputAgent(instrumentingAgents, inspectorState, page, client));
61 InspectorInputAgent(InstrumentingAgents*, InspectorCompositeState*, Page*, InspectorClient*);
63 Page* m_page;
PageRuntimeAgent.h 42 class Page;
47 static PassOwnPtr<PageRuntimeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
49 return adoptPtr(new PageRuntimeAgent(instrumentingAgents, state, injectedScriptManager, scriptDebugServer, page, pageAgent));
62 PageRuntimeAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, ScriptDebugServer*, Page*, InspectorPageAgent*);
70 Page* m_inspectedPage;
InspectorController.h 57 class Page;
72 static PassOwnPtr<InspectorController> create(Page*, InspectorClient*);
75 Page* inspectedPage() const;
120 InspectorController(Page*, InspectorClient*);
123 friend InstrumentingAgents* instrumentationForPage(Page*);
136 Page* m_page;
InspectorClient.h 37 class Page;
70 static bool doDispatchMessageOnFrontendPage(Page* frontendPage, const String& message);
InspectorInstrumentationCustomInl.h 46 inline bool profilerEnabled(Page* page)
48 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
61 inline bool collectingHTMLParseErrors(Page* page)
64 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
InspectorInstrumentation.idl 49 * Examples: DOM, Page, Debugger.
64 [Page, Inspector, PageDebugger, PageRuntime]
175 [Page, Inline=FastReturn]
176 void scriptsEnabled(Page*, bool isEnabled);
193 [Timeline, Page, Inline=FastReturn]
196 [Page, Inline=FastReturn]
197 void didScroll(Page*);
199 [Page, Inline=FastReturn]
200 void didResizeMainFrame(Page*);
217 [Timeline, Page, Inline=FastReturn
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebDevToolsAgentPrivate.h 61 virtual bool handleInputEvent(WebCore::Page*, const WebInputEvent&) = 0;
InspectorFrontendClientImpl.h 39 class Page;
50 InspectorFrontendClientImpl(WebCore::Page*, WebDevToolsFrontendClient*, WebDevToolsFrontendImpl*);
83 WebCore::Page* m_frontendPage;
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileSystemClient.h 41 class Page;
63 void provideLocalFileSystemTo(Page*, PassOwnPtr<FileSystemClient>);
  /external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/
NavigatorContentUtilsClient.h 35 class Page;
54 void provideNavigatorContentUtilsTo(Page*, NavigatorContentUtilsClient*);
NavigatorContentUtils.h 41 class Page;
43 class NavigatorContentUtils : public RefCountedSupplement<Page, NavigatorContentUtils> {
48 static NavigatorContentUtils* from(Page*);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DeviceOrientationController.cpp 36 DeviceOrientationController::DeviceOrientationController(Page* page, DeviceOrientationClient* client)
38 , m_page(page)
44 PassOwnPtr<DeviceOrientationController> DeviceOrientationController::create(Page* page, DeviceOrientationClient* client)
46 return adoptPtr(new DeviceOrientationController(page, client));
75 DeviceOrientationController* DeviceOrientationController::from(Page* page)
77 return static_cast<DeviceOrientationController*>(Supplement<Page>::from(page, supplementName()))
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
test_expectations_unittest.py 6 from telemetry.page import page as page_module
7 from telemetry.page import page_set
8 from telemetry.page import test_expectations
33 def assertExpectationEquals(self, expected, platform, page):
34 result = self.expectations.GetExpectationForPage(platform, page)
40 page = page_module.Page('http://test.com/page0.html', ps)
41 self.assertExpectationEquals('pass', StubPlatform('win'), page)
47 page = page_module.Page('http://test.com/page1.html', ps
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognitionController.h 29 #include "core/page/Page.h"
35 class SpeechRecognitionController : public Supplement<Page> {
49 static SpeechRecognitionController* from(Page* page) { return static_cast<SpeechRecognitionController*>(Supplement<Page>::from(page, supplementName())); }
  /external/chromium_org/third_party/WebKit/Source/core/testing/
InternalSettings.h 42 class Page;
72 static PassRefPtr<InternalSettings> create(Page* page)
74 return adoptRef(new InternalSettings(page));
76 static InternalSettings* from(Page*);
116 explicit InternalSettings(Page*);
119 Page* page() const { return m_page; } function in class:WebCore::InternalSettings
122 Page* m_page;
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
NotificationClient.h 44 class Page;
62 // When the user closes a page, or quits the client application, all of the page's
67 // (such as by a page transition). The presenter may continue showing
71 // Informs the presenter the controller attached to the page has been destroyed.
94 void provideNotification(Page*, NotificationClient*);
NotificationController.cpp 52 NotificationClient* NotificationController::clientFrom(Page* page)
54 if (NotificationController* controller = NotificationController::from(page))
64 void provideNotification(Page* page, NotificationClient* client)
66 NotificationController::provideTo(page, NotificationController::supplementName(), NotificationController::create(client));

Completed in 428 milliseconds

12 3 4 5 6 7 8 91011>>