Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(339)

Side by Side Diff: content/browser/web_contents/web_contents_view_android.h

Issue 12443003: Implement out-of-band video compositing on Android: Step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_ANDROID_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_ANDROID_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_ANDROID_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_ANDROID_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "content/browser/web_contents/web_contents_impl.h" 9 #include "content/browser/web_contents/web_contents_impl.h"
10 #include "content/port/browser/render_view_host_delegate_view.h" 10 #include "content/port/browser/render_view_host_delegate_view.h"
(...skipping 10 matching lines...) Expand all
21 public: 21 public:
22 WebContentsViewAndroid(WebContentsImpl* web_contents, 22 WebContentsViewAndroid(WebContentsImpl* web_contents,
23 WebContentsViewDelegate* delegate); 23 WebContentsViewDelegate* delegate);
24 virtual ~WebContentsViewAndroid(); 24 virtual ~WebContentsViewAndroid();
25 25
26 // Sets the interface to the view system. ContentViewCoreImpl is owned 26 // Sets the interface to the view system. ContentViewCoreImpl is owned
27 // by its Java ContentViewCore counterpart, whose lifetime is managed 27 // by its Java ContentViewCore counterpart, whose lifetime is managed
28 // by the UI frontend. 28 // by the UI frontend.
29 void SetContentViewCore(ContentViewCoreImpl* content_view_core); 29 void SetContentViewCore(ContentViewCoreImpl* content_view_core);
30 30
31 void RequestExternalVideoSurface(int player_id);
32
31 // WebContentsView implementation -------------------------------------------- 33 // WebContentsView implementation --------------------------------------------
32 virtual gfx::NativeView GetNativeView() const OVERRIDE; 34 virtual gfx::NativeView GetNativeView() const OVERRIDE;
33 virtual gfx::NativeView GetContentNativeView() const OVERRIDE; 35 virtual gfx::NativeView GetContentNativeView() const OVERRIDE;
34 virtual gfx::NativeWindow GetTopLevelNativeWindow() const OVERRIDE; 36 virtual gfx::NativeWindow GetTopLevelNativeWindow() const OVERRIDE;
35 virtual void GetContainerBounds(gfx::Rect* out) const OVERRIDE; 37 virtual void GetContainerBounds(gfx::Rect* out) const OVERRIDE;
36 virtual void OnTabCrashed(base::TerminationStatus status, 38 virtual void OnTabCrashed(base::TerminationStatus status,
37 int error_code) OVERRIDE; 39 int error_code) OVERRIDE;
38 virtual void SizeContents(const gfx::Size& size) OVERRIDE; 40 virtual void SizeContents(const gfx::Size& size) OVERRIDE;
39 virtual void Focus() OVERRIDE; 41 virtual void Focus() OVERRIDE;
40 virtual void SetInitialFocus() OVERRIDE; 42 virtual void SetInitialFocus() OVERRIDE;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 85
84 // Interface for extensions to WebContentsView. Used to show the context menu. 86 // Interface for extensions to WebContentsView. Used to show the context menu.
85 scoped_ptr<WebContentsViewDelegate> delegate_; 87 scoped_ptr<WebContentsViewDelegate> delegate_;
86 88
87 DISALLOW_COPY_AND_ASSIGN(WebContentsViewAndroid); 89 DISALLOW_COPY_AND_ASSIGN(WebContentsViewAndroid);
88 }; 90 };
89 91
90 } // namespace content 92 } // namespace content
91 93
92 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_ANDROID_H_ 94 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_ANDROID_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | content/browser/web_contents/web_contents_view_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698