Searched refs:m_frame (Results 1 - 25 of 202) sorted by relevance

123456789

/external/webkit/Source/WebCore/page/
H A DScreen.cpp42 : m_frame(frame)
48 return m_frame;
53 m_frame = 0;
58 if (!m_frame)
60 return static_cast<unsigned>(screenRect(m_frame->view()).height());
65 if (!m_frame)
67 return static_cast<unsigned>(screenRect(m_frame->view()).width());
72 if (!m_frame)
74 return static_cast<unsigned>(screenDepth(m_frame->view()));
79 if (!m_frame)
[all...]
H A DPerformanceNavigation.cpp43 : m_frame(frame)
49 return m_frame;
54 m_frame = 0;
59 if (!m_frame)
62 DocumentLoader* documentLoader = m_frame->loader()->documentLoader();
79 if (!m_frame)
82 DocumentLoader* loader = m_frame->loader()->documentLoader();
H A DHistory.cpp41 : m_frame(frame)
47 return m_frame;
52 m_frame = 0;
57 if (!m_frame)
59 if (!m_frame->page())
61 return m_frame->page()->backForward()->count();
86 if (!m_frame)
89 m_frame->navigationScheduler()->scheduleHistoryNavigation(distance);
94 if (!m_frame)
102 if (!activeFrame->loader()->shouldAllowNavigation(m_frame))
[all...]
H A DPerformance.cpp45 : m_frame(frame)
51 return m_frame;
66 m_frame = 0;
71 m_memory = MemoryInfo::create(m_frame);
78 m_navigation = PerformanceNavigation::create(m_frame);
86 m_timing = PerformanceTiming::create(m_frame);
H A DBarInfo.cpp39 : m_frame(frame)
46 return m_frame;
51 m_frame = 0;
61 if (!m_frame)
63 Page* page = m_frame->page();
H A DLocation.cpp41 : m_frame(frame)
47 m_frame = 0;
52 ASSERT(m_frame);
54 const KURL& url = m_frame->document()->url();
63 if (!m_frame)
71 if (!m_frame)
79 if (!m_frame)
90 if (!m_frame)
98 if (!m_frame)
107 if (!m_frame)
[all...]
H A DNavigator.cpp57 : m_frame(frame)
86 m_frame = 0;
108 if (!m_frame)
111 if (shouldHideFourDot(m_frame))
123 if (!m_frame)
128 if (!m_frame->page())
131 return m_frame->loader()->userAgent(m_frame->document()->url());
137 m_plugins = DOMPluginArray::create(m_frame);
144 m_mimeTypes = DOMMimeTypeArray::create(m_frame);
[all...]
H A DDOMSelection.cpp56 : m_frame(frame)
62 return m_frame;
67 m_frame = 0;
72 ASSERT(m_frame);
73 return m_frame->selection()->selection();
100 if (!m_frame)
102 if (Node* shadowAncestor = selectionShadowAncestor(m_frame))
109 if (!m_frame)
111 if (Node* shadowAncestor = selectionShadowAncestor(m_frame))
118 if (!m_frame)
[all...]
/external/webkit/Source/WebCore/loader/
H A DFrameNetworkingContext.h32 m_frame = 0;
37 : m_frame(frame)
41 Frame* frame() const { return m_frame; }
44 virtual bool isValid() const { return m_frame; }
46 Frame* m_frame; member in class:WebCore::FrameNetworkingContext
H A DDocumentWriter.cpp58 : m_frame(frame)
69 m_frame->loader()->stopAllLoaders();
70 begin(m_frame->document()->url(), true, m_frame->document()->securityOrigin());
75 m_frame->document()->setCompatibilityMode(Document::NoQuirksMode);
80 if (DocumentParser* parser = m_frame->document()->parser())
102 if (!m_frame->loader()->stateMachine()->isDisplayingInitialEmptyDocument() && m_frame->loader()->client()->shouldUsePluginDocument(m_mimeType))
103 return PluginDocument::create(m_frame, url);
104 if (!m_frame
[all...]
H A DHistoryController.cpp68 : m_frame(frame)
79 if (!item || !m_frame->view())
82 if (m_frame->document()->inPageCache())
83 item->setScrollPoint(m_frame->view()->cachedScrollPosition());
85 item->setScrollPoint(m_frame->view()->scrollPosition());
87 item->setPageScaleFactor(m_frame->pageScaleFactor());
90 m_frame->loader()->client()->saveViewStateToItem(item);
106 if (!m_frame->loader()->stateMachine()->committedFirstRealDocumentLoad())
121 m_frame->loader()->client()->restoreViewState();
123 if (FrameView* view = m_frame
[all...]
/external/webkit/Source/WebCore/storage/
H A DStorage.cpp46 : m_frame(frame)
49 ASSERT(m_frame);
59 if (!m_frame || !m_frame->page() || m_frame->page()->settings()->privateBrowsingEnabled())
67 if (!m_frame || !m_frame->page() || m_frame->page()->settings()->privateBrowsingEnabled())
75 if (!m_frame || !m_frame
[all...]
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFrameListenerProxy.cpp34 : m_frame(frame)
45 m_frame = 0;
50 if (!m_frame)
53 m_frame->receivedPolicyDecision(action, m_listenerID);
54 m_frame = 0;
/external/webkit/Source/WebCore/bindings/
H A DScriptControllerBase.cpp38 if (m_frame->loader()->isSandboxed(SandboxScripts))
41 Settings* settings = m_frame->settings();
42 const bool allowed = m_frame->loader()->client()->allowJavaScript(settings && settings->isJavaScriptEnabled());
44 m_frame->loader()->client()->didNotAllowScript();
50 return executeScript(ScriptSourceCode(script, forceUserGesture ? KURL() : m_frame->document()->url()));
76 if (!m_frame->page()
77 || !m_frame->page()->javaScriptURLsAreAllowed()
78 || !m_frame->document()->contentSecurityPolicy()->allowJavaScriptURLs()
79 || m_frame->inViewSourceMode())
84 RefPtr<Frame> protector(m_frame);
[all...]
/external/webkit/Source/WebCore/css/
H A DStyleMedia.cpp38 : m_frame(frame)
44 FrameView* view = m_frame ? m_frame->view() : 0;
53 if (!m_frame)
56 Document* document = m_frame->document();
74 MediaQueryEvaluator screenEval(type(), m_frame, rootStyle.get());
H A DStyleMedia.h43 void disconnectFrame() { m_frame = 0; }
52 Frame* m_frame; member in class:WebCore::StyleMedia
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebFrameLoaderClient.cpp76 : m_frame(frame)
88 m_frame->invalidate();
91 m_frame->deref();
101 return m_frame->page();
126 WebPage* webPage = m_frame->page();
133 webPage->injectedBundleLoaderClient().didRemoveFrameFromHierarchy(webPage, m_frame, userData);
136 webPage->send(Messages::WebPageProxy::DidRemoveFrameFromHierarchy(m_frame->frameID(), InjectedBundleUserMessageEncoder(userData.get())));
147 WebPage* webPage = m_frame->page();
155 webPage->injectedBundleResourceLoadClient().didInitiateLoadForResource(webPage, m_frame, identifier, request, pageIsProvisionallyLoading);
156 webPage->send(Messages::WebPageProxy::DidInitiateLoadForResource(m_frame
[all...]
/external/webkit/Source/WebCore/plugins/
H A DDOMMimeType.cpp34 , m_frame(frame)
37 if (m_frame)
38 m_frame->addDestructionObserver(this);
43 if (m_frame)
44 m_frame->removeDestructionObserver(this);
72 if (!m_frame || !m_frame->page() || !m_frame->page()->mainFrame()->loader()->subframeLoader()->allowPlugins(NotAboutToInstantiatePlugin))
75 return DOMPlugin::create(m_pluginData.get(), m_frame, m_pluginData->mimePluginIndices()[m_index]);
/external/webkit/Source/WebCore/loader/win/
H A DDocumentLoaderWin.cpp39 text.replace('//', m_frame->backslashAsCurrencySymbol());
41 FrameWin* frameWin = static_cast<FrameWin*>(m_frame);
/external/webkit/Source/WebCore/loader/appcache/
H A DDOMApplicationCache.cpp43 : m_frame(frame)
55 m_frame = 0;
60 if (!m_frame || !m_frame->loader()->documentLoader())
62 return m_frame->loader()->documentLoader()->applicationCacheHost();
89 if (m_frame)
90 return m_frame->document();
/external/webkit/Source/JavaScriptCore/heap/
H A DHandleStack.h66 Frame m_frame; member in class:JSC::HandleStack
75 lastFrame = m_frame;
87 if (lastFrame.m_end != m_frame.m_end) { // Zapping to a frame in a different block.
100 for (HandleSlot it = m_frame.m_next - 1; it != lastFrame.m_next - 1; --it)
113 if (lastFrame.m_end != m_frame.m_end) // Popping to a frame in a different block.
116 m_frame = lastFrame;
122 if (m_frame.m_next == m_frame.m_end)
124 return m_frame.m_next++;
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DFrameLoaderClientAndroid.cpp92 : m_frame(NULL)
108 m_frame = 0;
127 ASSERT(m_frame);
128 m_frame->view()->forceLayout();
130 m_frame->view()->adjustViewSize();
155 // called for each subresource, so they should not be dispatched to the m_frame.
249 ASSERT(m_frame);
250 if (m_frame->tree() && m_frame->tree()->parent())
252 WTF::String url(m_frame
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSDataGridDataSource.cpp45 , m_frame(frame)
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CustomApplicationInstalledCallback.cpp38 , m_frame(frame)
51 v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get());
62 RefPtr<Frame> protector(m_frame);
65 invokeCallback(m_callback, 1, argv, callbackReturnValue, m_frame->document());
/external/webkit/Tools/DumpRenderTree/mac/
H A DUIDelegate.h34 NSRect m_frame; variable

Completed in 1958 milliseconds

123456789