/external/chromium_org/third_party/WebKit/Source/core/frame/ |
BarProp.cpp | 51 if (!m_frame) 53 FrameHost* host = m_frame->host();
|
FrameView.cpp | 101 : m_frame(frame) 126 ASSERT(m_frame); 129 if (!m_frame->isMainFrame()) 172 ASSERT(m_frame); 173 ASSERT(m_frame->view() != this || !m_frame->contentRenderer()); 175 HTMLFrameOwnerElement* ownerElement = m_frame->deprecatedLocalOwner(); 216 cache->childrenChanged(m_frame->pagePopupOwner()); 228 Element* ownerElement = m_frame->deprecatedLocalOwner(); 249 if (m_frame->page()) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/plugins/ |
DOMMimeTypeArray.cpp | 57 return DOMMimeType::create(data, m_frame, index).get(); 81 return DOMMimeType::create(data, m_frame, i).get(); 88 if (!m_frame) 90 Page* p = m_frame->page();
|
DOMPluginArray.cpp | 57 return DOMPlugin::create(data, m_frame, index).get(); 81 return DOMPlugin::create(data, m_frame, i).get(); 93 if (!m_frame) 95 Page* page = m_frame->page();
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
FrameData.h | 50 RefPtr<NativeImageSkia> m_frame; member in struct:blink::FrameData
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
ScriptController.cpp | 94 : m_frame(frame) 145 RefPtrWillBeRawPtr<LocalFrame> protect(m_frame); 146 return ScriptController::callFunction(m_frame->document(), function, receiver, argc, info, m_isolate); 171 TRACE_EVENT1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "EvaluateScript", "data", InspectorEvaluateScriptEvent::data(m_frame, source.url().string(), source.startLine())); 174 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willEvaluateScript(m_frame, source.url().string(), source.startLine()); 179 if (m_frame->settings()) 180 v8CacheOptions = m_frame->settings()->v8CacheOptions(); 195 RefPtrWillBeRawPtr<LocalFrame> protect(m_frame); 196 result = V8ScriptRunner::runCompiledScript(script, m_frame->document(), m_isolate); 234 OwnPtr<WindowProxy> isolatedWorldWindowProxy = WindowProxy::create(m_frame, world, m_isolate) [all...] |
WindowProxy.cpp | 84 : m_frame(frame) 97 m_frame->loader().client()->willReleaseScriptContext(context, m_world->worldId()); 107 V8GCForContextDispose::instanceTemplate().notifyContextDisposed(m_frame->isMainFrame()); 217 if (m_frame->document()) { 218 setSecurityToken(m_frame->document()->securityOrigin()); 219 ContentSecurityPolicy* csp = m_frame->document()->contentSecurityPolicy(); 228 InspectorInstrumentation::didCreateIsolatedContext(m_frame, m_scriptState.get(), origin); 231 m_frame->loader().client()->didCreateScriptContext(context, m_world->extensionGroup(), m_world->worldId()); 239 if (!m_frame->loader().documentLoader()) 257 if (!m_frame->loader().client()->allowScriptExtension(extensions[i]->name(), extensionGroup, worldId) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
ProgressTracker.cpp | 71 : m_frame(frame) 91 visitor->trace(m_frame); 122 m_frame->loader().client()->didStartLoading(NavigationToDifferentDocument); 125 InspectorInstrumentation::frameStartedLoading(m_frame); 134 m_frame->loader().client()->progressEstimateChanged(m_progressValue); 137 m_frame->loader().client()->didStopLoading(); 138 InspectorInstrumentation::frameStoppedLoading(m_frame); 177 int numPendingOrLoadingRequests = m_frame->document()->fetcher()->requestCount(); 186 bool useClampedMaxProgress = !m_frame->view()->didFirstLayout(); 204 m_frame->loader().client()->progressEstimateChanged(m_progressValue) [all...] |
MixedContentChecker.cpp | 52 : m_frame(frame) 58 return m_frame->loader().client(); 280 // Check the top frame if it differs from MixedContentChecker's m_frame. 281 if (!m_frame->tree().top()->isLocalFrame()) { 287 Frame* top = m_frame->tree().top(); 288 if (top != m_frame && !toLocalFrame(top)->loader().mixedContentChecker()->canDisplayInsecureContent(toLocalFrame(top)->document()->securityOrigin(), url)) 293 UseCounter::count(m_frame->document(), UseCounter::MixedContentPrivateIPInPublicWebsitePassive); 299 Settings* settings = m_frame->settings(); 311 // Check the top frame if it differs from MixedContentChecker's m_frame. 312 if (!m_frame->tree().top()->isLocalFrame()) [all...] |
ProgressTracker.h | 71 RawPtrWillBeMember<LocalFrame> m_frame; member in class:blink::FINAL
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
ConsoleMessageStorage.cpp | 19 , m_frame(nullptr) 26 , m_frame(frame) 94 return m_frame ? m_frame->document() : m_context; 101 visitor->trace(m_frame);
|
/external/chromium_org/third_party/WebKit/Source/core/loader/appcache/ |
ApplicationCache.cpp | 62 if (!m_frame || !m_frame->loader().documentLoader()) 64 return m_frame->loader().documentLoader()->applicationCacheHost(); 103 if (m_frame) 104 return m_frame->document();
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
EventHandler.cpp | 203 : m_frame(frame) 363 m_frame->selection().setNonDirectionalSelectionIfNeeded(selection, granularity); 416 (result.event().clickCount() == 2 && m_frame->editor().isSelectTrailingWhitespaceEnabled()) ? ShouldAppendTrailingWhitespace : DontAppendTrailingWhitespace); 424 (result.event().clickCount() == 2 && m_frame->editor().isSelectTrailingWhitespaceEnabled()) ? ShouldAppendTrailingWhitespace : DontAppendTrailingWhitespace); 453 if (m_frame->selection().isRange()) { 497 m_frame->document()->updateLayoutIgnorePendingStylesheets(); 507 if (FrameView* view = m_frame->view()) { 509 if (!extendSelection && m_frame->selection().contains(vPoint)) { 520 VisibleSelection newSelection = m_frame->selection().selection(); 532 if (!m_frame->editor().behavior().shouldConsiderSelectionAsDirectional()) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DocumentInit.cpp | 67 , m_frame(frame) 79 , m_frame(other.m_frame) 102 return m_parent && m_frame->loader().shouldTreatURLAsSrcdocDocument(m_url); 107 if (m_frame) 108 return m_frame;
|
/external/chromium_org/third_party/WebKit/Source/web/ |
ColorChooserUIController.cpp | 41 : m_frame(frame) 88 WebLocalFrameImpl* frame = WebLocalFrameImpl::fromFrame(m_frame);
|
ColorChooserUIController.h | 61 LocalFrame* m_frame; member in class:blink::ColorChooserUIController
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
FFTConvolver.cpp | 42 : m_frame(fftSize) 91 m_frame.doFFT(m_inputBuffer.data()); 92 m_frame.multiply(*fftKernel); 93 m_frame.doInverseFFT(m_outputBuffer.data());
|
FFTFrame.h | 96 DSPSplitComplex& dspSplitComplex() { return m_frame; } 97 DSPSplitComplex dspSplitComplex() const { return m_frame; } 101 DSPSplitComplex m_frame; member in class:blink::FFTFrame
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
InputMethodController.h | 98 RawPtrWillBeMember<LocalFrame> m_frame; member in class:blink::FINAL 112 ASSERT(m_frame); 113 return *m_frame;
|
FrameSelection.cpp | 95 : m_frame(frame) 106 if (shouldAlwaysUseDirectionalSelection(m_frame)) 122 return selectionRoot ? selectionRoot : m_frame->document()->documentElement(); 195 bool isDirectional = shouldAlwaysUseDirectionalSelection(m_frame) || newSelection.isDirectional(); 228 if (shouldAlwaysUseDirectionalSelection(m_frame)) 231 if (!m_frame) { 237 // if document->frame() == m_frame we can get into an infinite loop 240 if (document.frame() && document.frame() != m_frame && document != m_frame->document()) { 255 TypingCommand::closeTyping(m_frame); [all...] |
SpellCheckRequester.h | 119 RawPtrWillBeMember<LocalFrame> m_frame; member in class:blink::FINAL 122 ASSERT(m_frame); 123 return *m_frame;
|
SpellChecker.h | 97 ASSERT(m_frame); 98 return *m_frame; 109 RawPtrWillBeMember<LocalFrame> m_frame; member in class:blink::FINAL
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
FrameTestHelpers.cpp | 118 : m_frame(frame) 125 m_frame->loadRequest(m_request); 129 WebFrame* const m_frame; member in class:blink::FrameTestHelpers::__anon16008::LoadTask 136 : m_frame(frame) 144 m_frame->loadHTMLString(WebData(m_html.data(), m_html.size()), m_baseURL); 148 WebFrame* const m_frame; member in class:blink::FrameTestHelpers::__anon16008::LoadHTMLStringTask 156 : m_frame(frame) 165 m_frame->loadHistoryItem(m_item, m_loadType, m_cachePolicy); 169 WebFrame* const m_frame; member in class:blink::FrameTestHelpers::__anon16008::LoadHistoryItemTask 178 : m_frame(frame 189 WebFrame* const m_frame; member in class:blink::FrameTestHelpers::__anon16008::ReloadTask [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/ |
ScreenOrientation.cpp | 122 if (!m_frame) 124 return m_frame->document(); 152 Document* document = m_frame ? m_frame->document() : 0; 180 if (!m_frame) 183 return ScreenOrientationController::from(*m_frame);
|
/external/chromium_org/third_party/WebKit/Source/core/testing/ |
DummyPageHolder.h | 78 RefPtrWillBePersistent<LocalFrame> m_frame; member in class:blink::DummyPageHolder
|