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

Unified Diff: content/browser/web_contents/web_contents_view_android.h

Issue 10704049: Split out ContentViewCore from ContentView for embedders. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/web_contents/web_contents_view_android.h
diff --git a/content/browser/web_contents/web_contents_view_android.h b/content/browser/web_contents/web_contents_view_android.h
index 1a0e9380f202fc296ac484349d84efd7725f79de..2d75ce37e25619405f513d2f524ae10138dc0312 100644
--- a/content/browser/web_contents/web_contents_view_android.h
+++ b/content/browser/web_contents/web_contents_view_android.h
@@ -14,7 +14,7 @@
#include "content/public/common/context_menu_params.h"
namespace content {
-class ContentViewImpl;
+class ContentViewCoreImpl;
// Android-specific implementation of the WebContentsView.
class WebContentsViewAndroid : public WebContentsView,
@@ -24,10 +24,10 @@ class WebContentsViewAndroid : public WebContentsView,
WebContentsViewDelegate* delegate);
virtual ~WebContentsViewAndroid();
- // Sets the interface to the view system. ContentViewImpl is owned
- // by its Java ContentView counterpart, whose lifetime is managed
+ // Sets the interface to the view system. ContentViewCoreImpl is owned
+ // by its Java ContentViewCore counterpart, whose lifetime is managed
// by the UI frontend.
- void SetContentView(ContentViewImpl* content_view);
+ void SetContentViewCore(ContentViewCoreImpl* content_view_core);
// WebContentsView implementation --------------------------------------------
@@ -75,8 +75,8 @@ class WebContentsViewAndroid : public WebContentsView,
// The WebContents whose contents we display.
WebContentsImpl* web_contents_;
- // ContentViewImpl is our interface to the view system.
- ContentViewImpl* content_view_;
+ // ContentViewCoreImpl is our interface to the view system.
+ ContentViewCoreImpl* content_view_core_;
// Interface for extensions to WebContentsView. Used to show the context menu.
scoped_ptr<WebContentsViewDelegate> delegate_;

Powered by Google App Engine
This is Rietveld 408576698