Searched defs:frame (Results 176 - 200 of 1151) sorted by relevance

1234567891011>>

/external/chromium_org/cc/surfaces/
H A Dsurface_factory.cc38 scoped_ptr<CompositorFrame> frame,
43 it->second->QueueFrame(frame.Pass(), callback);
37 SubmitFrame(SurfaceId surface_id, scoped_ptr<CompositorFrame> frame, const base::Closure& callback) argument
/external/chromium_org/chrome/renderer/extensions/
H A Dresource_request_policy.cc34 blink::WebFrame* frame,
66 GURL frame_url = frame->document().url();
67 GURL page_url = frame->top()->document().url();
93 frame->addMessageToConsole(
106 blink::WebFrame* frame) {
109 GURL frame_url = frame->document().url();
116 frame->addMessageToConsole(
32 CanRequestResource( const GURL& resource_url, blink::WebFrame* frame, ui::PageTransition transition_type, const ExtensionSet* loaded_extensions) argument
104 CanRequestExtensionResourceScheme( const GURL& resource_url, blink::WebFrame* frame) argument
/external/chromium_org/chrome/renderer/
H A Dprefetch_helper.cc34 blink::WebFrame* frame = render_frame()->GetWebFrame(); local
42 blink::WebURLLoader* loader = frame->createAssociatedURLLoader(options);
/external/chromium_org/content/browser/compositor/
H A Dgpu_surfaceless_browser_compositor_output_surface.cc38 cc::CompositorFrame* frame) {
42 output_surface_->SwapBuffers(frame->gl_frame_data->sub_buffer_rect);
43 const gfx::Size& size = frame->gl_frame_data->size;
56 GpuBrowserCompositorOutputSurface::SwapBuffers(frame);
37 SwapBuffers( cc::CompositorFrame* frame) argument
H A Dsurface_display_output_surface.cc42 void SurfaceDisplayOutputSurface::SwapBuffers(cc::CompositorFrame* frame) { argument
44 frame->delegated_frame_data->render_pass_list.back()->output_rect.size();
56 frame->AssignTo(frame_copy.get());
/external/chromium_org/content/browser/renderer_host/
H A Drenderer_frame_manager.cc20 void RendererFrameManager::AddFrame(RendererFrameManagerClient* frame, argument
22 RemoveFrame(frame);
24 locked_frames_[frame] = 1;
26 unlocked_frames_.push_front(frame);
30 void RendererFrameManager::RemoveFrame(RendererFrameManagerClient* frame) { argument
32 locked_frames_.find(frame);
35 unlocked_frames_.remove(frame);
38 void RendererFrameManager::LockFrame(RendererFrameManagerClient* frame) { argument
40 std::find(unlocked_frames_.begin(), unlocked_frames_.end(), frame);
42 DCHECK(locked_frames_.find(frame)
51 UnlockFrame(RendererFrameManagerClient* frame) argument
[all...]
/external/chromium_org/content/renderer/
H A Dexternal_popup_menu_browsertest.cc32 RenderFrameImpl* frame() { function in class:content::ExternalPopupMenuTest
95 frame()->OnSelectPopupMenuItem(-1);
100 frame()->OnSelectPopupMenuItem(0);
122 frame()->OnSelectPopupMenuItem(-1);
146 frame()->OnSelectPopupMenuItem(0);
200 frame()->OnSelectPopupMenuItem(1);
H A Dweb_ui_extension.cc32 blink::WebFrame* frame = blink::WebLocalFrame::frameForCurrentContext(); local
33 if (!frame || !frame->view())
36 RenderView* render_view = RenderView::FromWebView(frame->view());
40 GURL frame_url = frame->document().url();
50 *frame_ptr = frame;
63 void WebUIExtension::Install(blink::WebFrame* frame) { argument
66 v8::Handle<v8::Context> context = frame->mainWorldScriptContext();
90 blink::WebFrame* frame; local
92 if (!ShouldRespondToRequest(&frame,
132 blink::WebFrame* frame; local
[all...]
H A Dweb_ui_runner.cc27 WebUIRunner::WebUIRunner(blink::WebFrame* frame, argument
29 : frame_(frame),
/external/chromium_org/content/renderer/media/
H A Drtc_video_renderer.cc85 const scoped_refptr<media::VideoFrame>& frame,
93 frame_size_ = frame->natural_size();
99 frame->timestamp().InMilliseconds());
100 repaint_cb_.Run(frame);
107 // frame if no more frames are provided. This is since there might be a
84 OnVideoFrame( const scoped_refptr<media::VideoFrame>& frame, const media::VideoCaptureFormat& format, const base::TimeTicks& estimated_capture_time) argument
H A Dvideo_source_handler_unittest.cc31 const scoped_refptr<media::VideoFrame>& frame) OVERRIDE {
32 last_frame_ = frame;
76 // A new frame is captured.
81 // The frame is delivered to VideoSourceHandler.
84 // Compare |frame| to |captured_frame|.
85 const media::VideoFrame* frame = reader.last_frame(); local
86 ASSERT_TRUE(frame != NULL);
87 EXPECT_EQ(width, frame->coded_size().width());
88 EXPECT_EQ(height, frame->coded_size().height());
89 EXPECT_EQ(ts, frame
[all...]
H A Dwebcontentdecryptionmodule_impl.cc33 blink::WebLocalFrame* frame,
40 DCHECK(frame);
69 base::Bind(&PepperCdmWrapperImpl::Create, frame),
31 Create( blink::WebLocalFrame* frame, const blink::WebSecurityOrigin& security_origin, const base::string16& key_system) argument
/external/chromium_org/content/renderer/media/webrtc/
H A Dwebrtc_video_capturer_adapter_unittest.cc38 scoped_refptr<media::VideoFrame> frame = local
42 adapter_.OnFrameCaptured(frame);
48 const cricket::CapturedFrame* frame) {
49 output_frame_width_ = frame->width;
50 output_frame_height_ = frame->height;
47 OnFrameCaptured(cricket::VideoCapturer* capturer, const cricket::CapturedFrame* frame) argument
/external/chromium_org/content/shell/renderer/
H A Dleak_detector.cc44 void LeakDetector::TryLeakDetection(blink::WebLocalFrame* frame) { argument
45 web_leak_detector_->collectGarbageAndGetDOMCounts(frame);
/external/chromium_org/extensions/common/
H A Dstack_frame.cc21 StackFrame::StackFrame(const StackFrame& frame) argument
22 : line_number(frame.line_number),
23 column_number(frame.column_number),
24 source(frame.source),
25 function(frame.function) {
42 // Create a stack frame from the passed text. The text must follow one of two
/external/chromium_org/extensions/renderer/
H A Dapp_window_custom_bindings.cc35 virtual void DidCreateDocumentElement(blink::WebLocalFrame* frame) OVERRIDE {
36 DCHECK(frame); variable
39 if (frame->parent())
44 frame->mainWorldScriptContext());
104 blink::WebFrame* frame = view->GetWebView()->mainFrame(); local
105 frame->setOpener(opener);
109 v8::Local<v8::Value> window = frame->mainWorldScriptContext()->Global();
H A Dlogging_native_handler.cc81 v8::Handle<v8::StackFrame> frame = stack_trace->GetFrame(i); local
82 CHECK(!frame.IsEmpty());
85 ToStringOrDefault(frame->GetFunctionName(), "<anonymous>").c_str(),
86 ToStringOrDefault(frame->GetScriptName(), "<anonymous>").c_str(),
87 frame->GetLineNumber(),
88 frame->GetColumn());
H A Dscript_context_browsertest.cc20 GURL GetEffectiveDocumentURL(const WebFrame* frame) { argument
22 frame, frame->document().url(), true);
44 WebFrame* frame = GetMainFrame(); local
45 ASSERT_TRUE(frame);
47 frame->loadHTMLString(frame_html, top_url);
48 content::FrameLoadWaiter(content::RenderFrame::FromWebFrame(frame)).Wait();
50 WebFrame* frame1 = frame->findChildByName("frame1");
56 WebFrame* frame2 = frame->findChildByName("frame2");
60 WebFrame* frame3 = frame
[all...]
/external/chromium_org/media/filters/
H A Dtest_video_frame_scheduler.cc12 const scoped_refptr<VideoFrame> frame,
15 : frame(frame), wall_ticks(wall_ticks), done_cb(done_cb) {
28 const scoped_refptr<VideoFrame>& frame,
31 scheduled_frames_.push_back(ScheduledFrame(frame, wall_ticks, done_cb));
62 done_frames[i].done_cb.Run(done_frames[i].frame, reason);
11 ScheduledFrame( const scoped_refptr<VideoFrame> frame, base::TimeTicks wall_ticks, const DoneCB& done_cb) argument
27 ScheduleVideoFrame( const scoped_refptr<VideoFrame>& frame, base::TimeTicks wall_ticks, const DoneCB& done_cb) argument
H A Dvideo_frame_scheduler_impl_unittest.cc36 void Schedule(const scoped_refptr<VideoFrame>& frame, int64 target_ms) { argument
38 frame,
68 scoped_refptr<VideoFrame> frame = local
70 Schedule(frame, 0);
72 EXPECT_CALL(*this, OnDisplay(frame));
73 EXPECT_CALL(*this, OnFrameDone(frame, VideoFrameScheduler::DISPLAYED));
78 scoped_refptr<VideoFrame> frame = local
80 Schedule(frame, 10);
85 // Now we should get the frame.
86 EXPECT_CALL(*this, OnDisplay(frame));
109 scoped_refptr<VideoFrame> frame = local
139 scoped_refptr<VideoFrame> frame = local
[all...]
/external/chromium_org/ppapi/proxy/
H A Dvideo_destination_resource.cc60 const PP_VideoFrame_Private& frame) {
65 frame.image_data, true);
71 PpapiGlobals::Get()->GetResourceTracker()->GetResource(frame.image_data);
80 frame.timestamp));
59 PutFrame( const PP_VideoFrame_Private& frame) argument
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScheduledAction.cpp41 #include "core/frame/LocalFrame.h"
74 LocalFrame* frame = toDocument(context)->frame(); local
75 if (!frame) {
76 WTF_LOG(Timers, "ScheduledAction::execute %p: no frame", this);
79 if (!frame->script().canExecuteScripts(AboutToExecuteScript)) {
80 WTF_LOG(Timers, "ScheduledAction::execute %p: frame can not execute scripts", this);
83 execute(frame);
90 void ScheduledAction::execute(LocalFrame* frame) argument
103 frame
[all...]
H A DScriptPreprocessor.cpp39 #include "core/frame/FrameConsole.h"
40 #include "core/frame/FrameHost.h"
41 #include "core/frame/LocalFrame.h"
47 ScriptPreprocessor::ScriptPreprocessor(const ScriptSourceCode& preprocessorSourceCode, LocalFrame* frame) argument
51 m_scriptState = ScriptState::from(toV8Context(frame, *world));
54 ASSERT(frame);
60 frame->script().executeScriptInIsolatedWorld(ScriptPreprocessorIsolatedWorldId, sources, DOMWrapperWorld::mainWorldExtensionGroup, &scriptResults);
63 frame->console().addMessage(ConsoleMessage::create(JSMessageSource, ErrorMessageLevel, "ScriptPreprocessor internal error, one ScriptSourceCode must give exactly one result."));
69 frame->console().addMessage(ConsoleMessage::create(JSMessageSource, ErrorMessageLevel, "The preprocessor must compile to a function."));
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8CustomXPathNSResolver.cpp36 #include "core/frame/FrameConsole.h"
37 #include "core/frame/FrameHost.h"
38 #include "core/frame/LocalDOMWindow.h"
39 #include "core/frame/LocalFrame.h"
70 LocalFrame* frame = callingDOMWindow(m_isolate)->frame(); local
71 if (frame && frame->host())
72 frame->console().addMessage(ConsoleMessage::create(JSMessageSource, ErrorMessageLevel, "XPathNSResolver does not have a lookupNamespaceURI method."));
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentInit.h55 LocalFrame* frame() const { return m_frame; } function in class:blink::FINAL

Completed in 263 milliseconds

1234567891011>>