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

Unified Diff: chrome/browser/ui/android/extensions/extension_view_android.cc

Issue 10913243: extensions: Add ExtensionView interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: weak Created 8 years, 3 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: chrome/browser/ui/android/extensions/extension_view_android.cc
diff --git a/chrome/browser/ui/android/extensions/extension_view_android.cc b/chrome/browser/ui/android/extensions/extension_view_android.cc
index 072c5fe81ebb8de4731bbbc9b185026383e2e5fe..7fe89ba1b9d9f09b32801559379568033600eaa4 100644
--- a/chrome/browser/ui/android/extensions/extension_view_android.cc
+++ b/chrome/browser/ui/android/extensions/extension_view_android.cc
@@ -6,6 +6,36 @@
#include "base/logging.h"
+ExtensionViewAndroid::ExtensionViewAndroid() {
+}
+
+ExtensionViewAndroid::~ExtensionViewAndroid() {
+}
+
+Browser* ExtensionViewAndroid::GetBrowser() {
+ NOTIMPLEMENTED();
+ return NULL;
+}
+
+const Browser* ExtensionViewAndroid::GetBrowser() const {
+ NOTIMPLEMENTED();
+ return NULL;
+}
+
+gfx::NativeView ExtensionViewAndroid::GetNativeView() {
+ NOTIMPLEMENTED();
+ return gfx::NativeView();
+}
+
+content::RenderViewHost* ExtensionViewAndroid::GetRenderViewHost() const {
+ NOTIMPLEMENTED();
+ return NULL;
+}
+
+void ExtensionViewAndroid::SetContainer(ExtensionViewContainer* container) {
+ NOTIMPLEMENTED();
+}
+
void ExtensionViewAndroid::ResizeDueToAutoResize(const gfx::Size& new_size) {
NOTIMPLEMENTED();
}
@@ -13,3 +43,17 @@ void ExtensionViewAndroid::ResizeDueToAutoResize(const gfx::Size& new_size) {
void ExtensionViewAndroid::RenderViewCreated() {
NOTIMPLEMENTED();
}
+
+void ExtensionViewAndroid::DidStopLoading() {
+ NOTIMPLEMENTED();
+}
+
+void ExtensionViewAndroid::WindowFrameChanged() {
+ NOTIMPLEMENTED();
+}
+
+// static
+ExtensionView* ExtensionView::Create(extensions::ExtensionHost* host,
+ Browser* browser) {
+ return new ExtensionViewAndroid();
+}

Powered by Google App Engine
This is Rietveld 408576698