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

Unified Diff: chrome/browser/extensions/extension_install_ui_android.cc

Issue 10388252: Refactoring ExtenionInstallUI to abstract the Browser references. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Yoyo's comments. Created 8 years, 7 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/extensions/extension_install_ui_android.cc
diff --git a/chrome/browser/extensions/extension_install_ui_android.cc b/chrome/browser/extensions/extension_install_ui_android.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7e2a56c57cdb400e9edaf303e4b0e1933821c08d
--- /dev/null
+++ b/chrome/browser/extensions/extension_install_ui_android.cc
@@ -0,0 +1,23 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/extensions/extension_install_ui.h"
+
+#include "base/logging.h"
+
+void ExtensionInstallUI::OnInstallSuccess(const Extension* extension,
+ SkBitmap* icon) {
+ NOTIMPLEMENTED();
+}
+
+void ExtensionInstallUI::OnInstallFailure(const string16& error) {
+ NOTIMPLEMENTED();
+}
+
+// static
+void ExtensionInstallUI::ShowThemeInfoBar(
+ const std::string& previous_theme_id, bool previous_using_native_theme,
+ const Extension* new_theme, Profile* profile) {
+ NOTIMPLEMENTED();
+}

Powered by Google App Engine
This is Rietveld 408576698