/external/webkit/Source/WebCore/history/ |
PageCache.h | 40 class Page; 47 static bool canCache(Page*); 52 void add(PassRefPtr<HistoryItem>, Page*); // Prunes if capacity() is exceeded. 91 // Function to obtain the global page cache.
|
/external/webkit/Source/WebCore/inspector/ |
InspectorApplicationCacheAgent.h | 44 class Page; 52 InspectorApplicationCacheAgent(InstrumentingAgents*, Page*); 71 Page* m_inspectedPage;
|
InspectorFrontendClientLocal.h | 43 class Page; 56 InspectorFrontendClientLocal(InspectorController*, Page*, PassOwnPtr<Settings>); 84 Page* m_frontendPage;
|
PageDebuggerAgent.cpp | 40 PassOwnPtr<PageDebuggerAgent> PageDebuggerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorState* inspectorState, Page* inspectedPage, InjectedScriptManager* injectedScriptManager) 45 PageDebuggerAgent::PageDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorState* inspectorState, Page* inspectedPage, InjectedScriptManager* injectedScriptManager)
|
InspectorClient.cpp | 37 #include "Page.h" 43 bool InspectorClient::doDispatchMessageOnFrontendPage(Page* frontendPage, const String& message)
|
InspectorFrontendHost.h | 48 class Page; 53 static PassRefPtr<InspectorFrontendHost> create(InspectorFrontendClient* client, Page* frontendPage) 89 InspectorFrontendHost(InspectorFrontendClient* client, Page* frontendPage); 92 Page* m_frontendPage;
|
InspectorPageAgent.h | 49 class Page; 56 static PassOwnPtr<InspectorPageAgent> create(InstrumentingAgents*, Page*, InjectedScriptManager*); 58 // Page API for InspectorFrontend 80 InspectorPageAgent(InstrumentingAgents*, Page*, InjectedScriptManager*); 83 Page* m_inspectedPage;
|
/external/webkit/Source/WebCore/page/ |
FocusController.h | 41 class Page; 46 FocusController(Page*); 70 Page* m_page;
|
GeolocationController.h | 41 class Page; 46 GeolocationController(Page*, GeolocationClient*); 63 Page* m_page;
|
PageGroup.h | 41 class Page; 49 PageGroup(Page*); 68 const HashSet<Page*>& pages() const { return m_pages; } 70 void addPage(Page*); 71 void removePage(Page*); 126 HashSet<Page*> m_pages;
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
WebPlatformStrategies.h | 55 virtual void getPluginInfo(const WebCore::Page*, Vector<WebCore::PluginInfo>&); 59 virtual bool isLinkVisited(WebCore::Page*, WebCore::LinkHash); 60 virtual void addVisitedLink(WebCore::Page*, WebCore::LinkHash);
|
WebPlatformStrategies.cpp | 36 #include <WebCore/Page.h> 91 void WebPlatformStrategies::getPluginInfo(const WebCore::Page*, Vector<WebCore::PluginInfo>& plugins) 118 bool WebPlatformStrategies::isLinkVisited(Page* page, LinkHash linkHash) 123 void WebPlatformStrategies::addVisitedLink(Page* page, LinkHash linkHash)
|
/external/webkit/Source/WebCore/bindings/js/ |
ScriptState.h | 47 class Page; 69 ScriptState* scriptStateFromPage(DOMWrapperWorld*, Page*);
|
PageScriptDebugServer.cpp | 39 #include "Page.h" 54 static Page* toPage(JSGlobalObject* globalObject) 60 return frame ? frame->page() : 0; 79 void PageScriptDebugServer::addListener(ScriptDebugListener* listener, Page* page) 82 ASSERT_ARG(page, page); 84 pair<PageListenersMap::iterator, bool> result = m_pageListenersMap.add(page, 0); 92 page->setDebugger(this); 95 void PageScriptDebugServer::removeListener(ScriptDebugListener* listener, Page* page 125 Page* page = toPage(globalObject); local 133 Page* page = toPage(globalObject); local 140 Page* page = toPage(globalObject); local [all...] |
/external/webkit/Source/WebCore/svg/graphics/ |
SVGImage.h | 36 class Page; 73 OwnPtr<Page> m_page;
|
/external/webkit/Source/WebKit/chromium/src/ |
DebuggerAgentImpl.h | 37 class Page; 59 WebCore::Page* page();
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebPlatformStrategies.mm | 31 #import <WebCore/Page.h> 70 void WebPlatformStrategies::getPluginInfo(const WebCore::Page*, Vector<WebCore::PluginInfo>& plugins) 84 bool WebPlatformStrategies::isLinkVisited(Page* page, LinkHash hash) 86 return page->group().isLinkVisited(hash); 89 void WebPlatformStrategies::addVisitedLink(Page* page, LinkHash hash) 91 return page->group().addVisitedLinkHash(hash);
|
/external/v8/src/ |
spaces.h | 50 // spaces consists of a list of pages. A page has a page header and an object 51 // area. A page size is deliberately chosen as 8K bytes. 52 // The first word of a page is an opaque page header that has the 53 // address of the next page and its ownership information. The second word may 54 // have the allocation top address of this page. Heap objects are aligned to the 58 // Page::kMaxHeapObjectSize, so that they do not have to move during 63 // references. Old space pages are divided into regions of Page::kRegionSize 64 // size. Each region has a corresponding dirty bit in the page header which i [all...] |
/external/webkit/Source/WebCore/plugins/ |
PluginData.h | 29 class Page; 53 static PassRefPtr<PluginData> create(const Page* page) { return adoptRef(new PluginData(page)); } 65 PluginData(const Page*); 66 void initPlugins(const Page*);
|
/external/webkit/Source/WebCore/storage/ |
StorageNamespace.cpp | 44 // The page argument is only used by the Chromium port. 45 PassRefPtr<StorageNamespace> StorageNamespace::sessionStorageNamespace(Page*, unsigned quota)
|
/external/webkit/Source/WebKit/efl/WebCoreSupport/ |
InspectorClientEfl.h | 40 class Page;
|
/external/webkit/Source/WebKit/gtk/webkit/ |
webkitwebinspectorprivate.h | 32 void webkit_web_inspector_set_inspector_client(WebKitWebInspector*, WebCore::Page*);
|
/external/webkit/Source/WebKit/wx/WebKitSupport/ |
InspectorClientWx.h | 35 class Page;
|
/external/webkit/Source/WebKit/wx/ |
WebViewPrivate.h | 35 #include "Page.h" 44 page(0) 47 WebCore::Page* page; member in class:WebViewPrivate
|
/external/webkit/Source/WebKit/win/ |
WebInspector.cpp | 35 #include <WebCore/Page.h> 101 if (Page* page = m_webView->page()) 102 page->inspectorController()->show(); 110 if (Page* page = m_webView->page()) 111 page->inspectorController()->showConsole(); 124 if (Page* page = m_webView->page() [all...] |