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

Unified Diff: chrome/browser/ui/extensions/shell_window.cc

Issue 9030017: Implement ShellWindow in Views. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 12 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/extensions/shell_window.cc
diff --git a/chrome/browser/ui/extensions/shell_window.cc b/chrome/browser/ui/extensions/shell_window.cc
index 358d253e0dc6b9d5484fcce374f607e2bfeeabec..40e64174f4f839023d457d5d726e4a6f366d1425 100644
--- a/chrome/browser/ui/extensions/shell_window.cc
+++ b/chrome/browser/ui/extensions/shell_window.cc
@@ -12,6 +12,8 @@
#if defined(TOOLKIT_USES_GTK)
#include "chrome/browser/ui/gtk/extensions/shell_window_gtk.h"
+#elif defined(TOOLKIT_VIEWS)
+#include "chrome/browser/ui/views/extensions/shell_window_views.h"
#endif
ShellWindow::ShellWindow(ExtensionHost* host)
@@ -37,6 +39,8 @@ ShellWindow* ShellWindow::Create(Profile* profile,
#if defined(TOOLKIT_USES_GTK)
// This object will delete itself when the window is closed.
return new ShellWindowGtk(host);
+#elif defined(TOOLKIT_VIEWS)
+ return new ShellWindowViews(host);
#endif
return NULL;

Powered by Google App Engine
This is Rietveld 408576698