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

12 3 4

  /external/chromium_org/third_party/WebKit/Source/core/storage/
Storage.h 48 unsigned length(ExceptionState& ec) const { return m_storageArea->length(ec, m_frame); }
49 String key(unsigned index, ExceptionState& ec) const { return m_storageArea->key(index, ec, m_frame); }
50 String getItem(const String& key, ExceptionState& ec) const { return m_storageArea->getItem(key, ec, m_frame); }
51 void setItem(const String& key, const String& value, ExceptionState& ec) { m_storageArea->setItem(key, value, ec, m_frame); }
52 void removeItem(const String& key, ExceptionState& ec) { m_storageArea->removeItem(key, ec, m_frame); }
53 void clear(ExceptionState& ec) { m_storageArea->clear(ec, m_frame); }
54 bool contains(const String& key, ExceptionState& ec) const { return m_storageArea->contains(key, ec, m_frame); }
  /external/chromium_org/third_party/WebKit/Source/core/loader/
DocumentLoader.cpp 74 : m_frame(frame)
90 if (!m_frame)
92 return &m_frame->loader();
102 ASSERT(!m_frame || !isLoading());
114 if (m_frame && m_frame->loader().documentLoader() == this)
115 return m_frame->document();
162 ASSERT(!mainResourceLoader() || !mainResourceLoader()->defersLoading() || InspectorInstrumentation::isDebuggerPaused(m_frame));
178 RefPtr<LocalFrame> protectFrame(m_frame);
189 Document* doc = m_frame->document()
    [all...]
MixedContentChecker.cpp 43 : m_frame(frame)
49 return m_frame->loader().client();
67 Settings* settings = m_frame->settings();
82 Settings* settings = m_frame->settings();
108 message.append("The page at '" + m_frame->document()->url().elidedString() + "' was loaded over HTTPS, but ");
122 m_frame->document()->addConsoleMessage(SecurityMessageSource, messageLevel, message.toString());
ProgressTracker.cpp 66 : m_frame(frame)
112 m_frame->loader().client()->didStartLoading(NavigationToDifferentDocument);
115 InspectorInstrumentation::frameStartedLoading(m_frame);
124 m_frame->loader().client()->progressEstimateChanged(m_progressValue);
127 m_frame->loader().client()->didStopLoading();
128 InspectorInstrumentation::frameStoppedLoading(m_frame);
167 int numPendingOrLoadingRequests = m_frame->document()->fetcher()->requestCount();
176 bool useClampedMaxProgress = !m_frame->view()->didFirstLayout();
194 m_frame->loader().client()->progressEstimateChanged(m_progressValue);
ProgressTracker.h 69 LocalFrame* m_frame; member in class:WebCore::ProgressTracker
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
DOMMimeType.cpp 69 // Something like: m_frame->host()->client()->allowPlugins().
70 if (!m_frame || !m_frame->loader().allowPlugins(NotAboutToInstantiatePlugin))
73 return DOMPlugin::create(m_pluginData.get(), m_frame, m_pluginData->mimePluginIndices()[m_index]);
DOMMimeTypeArray.cpp 56 return DOMMimeType::create(data, m_frame, index).get();
80 return DOMMimeType::create(data, m_frame, i).get();
87 if (!m_frame)
89 Page* p = m_frame->page();
DOMPluginArray.cpp 56 return DOMPlugin::create(data, m_frame, index).get();
80 return DOMPlugin::create(data, m_frame, i).get();
92 if (!m_frame)
94 Page* page = m_frame->page();
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
FrameData.h 50 RefPtr<NativeImageSkia> m_frame; member in struct:WebCore::FrameData
  /external/chromium_org/third_party/WebKit/Source/core/loader/appcache/
ApplicationCache.cpp 57 if (!m_frame || !m_frame->loader().documentLoader())
59 return m_frame->loader().documentLoader()->applicationCacheHost();
98 if (m_frame)
99 return m_frame->document();
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptController.cpp 92 : m_frame(frame)
143 RefPtr<LocalFrame> protect(m_frame);
144 return ScriptController::callFunction(m_frame->document(), function, receiver, argc, info, m_isolate);
169 TRACE_EVENT1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "EvaluateScript", "data", InspectorEvaluateScriptEvent::data(m_frame, source.url().string(), source.startLine()));
172 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willEvaluateScript(m_frame, source.url().string(), source.startLine());
186 RefPtr<LocalFrame> protect(m_frame);
187 result = V8ScriptRunner::runCompiledScript(script, m_frame->document(), m_isolate);
225 OwnPtr<V8WindowShell> isolatedWorldShell = V8WindowShell::create(m_frame, world, m_isolate);
231 m_frame->loader().dispatchDidClearWindowObjectInMainWorld();
246 ScriptableDocumentParser* parser = m_frame->document()->scriptableDocumentParser()
    [all...]
V8WindowShell.cpp 88 : m_frame(frame)
101 m_frame->loader().client()->willReleaseScriptContext(context, m_world->worldId());
111 V8GCForContextDispose::instanceTemplate().notifyContextDisposed(m_frame->isMainFrame());
214 V8WindowShell* mainWindow = m_frame->script().existingWindowShell(DOMWrapperWorld::mainWorld());
216 setInjectedScriptContextDebugId(context, m_frame->script().contextDebugId(mainWindow->context()));
227 if (m_frame->document()) {
228 setSecurityToken(m_frame->document()->securityOrigin());
229 ContentSecurityPolicy* csp = m_frame->document()->contentSecurityPolicy();
238 InspectorInstrumentation::didCreateIsolatedContext(m_frame, m_scriptState.get(), origin);
241 m_frame->loader().client()->didCreateScriptContext(context, m_world->extensionGroup(), m_world->worldId())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 108 : m_frame(frame)
135 ASSERT(m_frame);
138 if (!m_frame->isMainFrame())
182 ASSERT(m_frame);
183 ASSERT(m_frame->view() != this || !m_frame->contentRenderer());
185 HTMLFrameOwnerElement* ownerElement = m_frame->deprecatedLocalOwner();
251 Element* ownerElement = m_frame->deprecatedLocalOwner();
271 if (m_frame->page()) {
272 if (ScrollingCoordinator* scrollingCoordinator = m_frame->page()->scrollingCoordinator()
    [all...]
FrameConsole.cpp 50 : m_frame(frame)
71 ExecutionContext* context = m_frame.document();
88 if (callStack && m_frame.chromeClient().shouldReportDetailedMessageForSource(messageURL))
91 m_frame.chromeClient().addMessageToConsole(&m_frame, source, level, message, lineNumber, messageURL, stackTrace);
FrameConsole.h 59 LocalFrame& m_frame; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentInit.cpp 67 , m_frame(frame)
78 , m_frame(other.m_frame)
100 return m_parent && m_frame->loader().shouldTreatURLAsSrcdocDocument(m_url);
105 if (m_frame)
106 return m_frame;
  /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
ScreenOrientationController.cpp 45 , m_frame(frame)
91 if (m_frame == m_frame.localFrameRoot() && oldOrientation != orientation())
92 m_frame.sendOrientationChangeEvent();
109 blink::WebScreenOrientationType orientationType = screenOrientationType(m_frame.view());
112 orientationType = computeOrientation(m_frame.view());
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp 202 : m_frame(frame)
366 m_frame->selection().setNonDirectionalSelectionIfNeeded(selection, granularity);
419 (result.event().clickCount() == 2 && m_frame->editor().isSelectTrailingWhitespaceEnabled()) ? ShouldAppendTrailingWhitespace : DontAppendTrailingWhitespace);
427 (result.event().clickCount() == 2 && m_frame->editor().isSelectTrailingWhitespaceEnabled()) ? ShouldAppendTrailingWhitespace : DontAppendTrailingWhitespace);
456 if (m_frame->selection().isRange()) {
500 m_frame->document()->updateLayoutIgnorePendingStylesheets();
510 if (FrameView* view = m_frame->view()) {
512 if (!extendSelection && m_frame->selection().contains(vPoint)) {
523 VisibleSelection newSelection = m_frame->selection().selection();
535 if (!m_frame->editor().behavior().shouldConsiderSelectionAsDirectional())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SpellChecker.cpp 76 if (Page* page = m_frame.page())
87 : m_frame(frame)
106 for (Frame* frame = m_frame.page()->mainFrame(); frame; frame = frame->tree().traverseNext()) {
148 if (RefPtrWillBeRawPtr<Range> selectedRange = m_frame.selection().toNormalizedRange())
149 m_frame.document()->markers().removeMarkers(selectedRange.get(), DocumentMarker::Spelling);
159 VisibleSelection selection(m_frame.selection().selection());
160 RefPtrWillBeRawPtr<Range> spellingSearchRange(rangeOfContents(m_frame.document()));
183 position = firstEditableVisiblePositionAfterPositionInRoot(position, m_frame.document()->documentElement()).deepEquivalent();
292 m_frame.selection().setSelection(VisibleSelection(badGrammarRange.get(), SEL_DEFAULT_AFFINITY));
293 m_frame.selection().revealSelection()
    [all...]
FrameSelection.cpp 93 : m_frame(frame)
104 if (shouldAlwaysUseDirectionalSelection(m_frame))
120 return selectionRoot ? selectionRoot : m_frame->document()->documentElement();
193 bool isDirectional = shouldAlwaysUseDirectionalSelection(m_frame) || newSelection.isDirectional();
226 if (shouldAlwaysUseDirectionalSelection(m_frame))
229 if (!m_frame) {
235 // if document->frame() == m_frame we can get into an infinite loop
238 if (document.frame() && document.frame() != m_frame && document != m_frame->document()) {
253 TypingCommand::closeTyping(m_frame);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ColorChooserUIController.cpp 43 : m_frame(frame)
85 WebLocalFrameImpl* frame = WebLocalFrameImpl::fromFrame(m_frame);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
DummyPageHolder.h 75 RefPtr<LocalFrame> m_frame; member in class:WebCore::DummyPageHolder
  /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; }
105 DSPSplitComplex m_frame; member in class:WebCore::FFTFrame
  /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::__anon15272::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::__anon15272::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::__anon15272::LoadHistoryItemTask
178 : m_frame(frame
189 WebFrame* const m_frame; member in class:blink::FrameTestHelpers::__anon15272::ReloadTask
    [all...]

Completed in 507 milliseconds

12 3 4