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

Unified Diff: chrome/browser/ui/gtk/extensions/shell_window_gtk.h

Issue 8985008: Don't use browser windows for platform app shell windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable PlatformAppBrowserTest.AppWithContextMenu on Windows 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/gtk/extensions/shell_window_gtk.h
diff --git a/chrome/browser/ui/gtk/extensions/shell_window_gtk.h b/chrome/browser/ui/gtk/extensions/shell_window_gtk.h
new file mode 100644
index 0000000000000000000000000000000000000000..19f4df5eed8c991da6f698631143e9266051acc2
--- /dev/null
+++ b/chrome/browser/ui/gtk/extensions/shell_window_gtk.h
@@ -0,0 +1,34 @@
+// 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.
+
+#ifndef CHROME_BROWSER_UI_GTK_EXTENSIONS_SHELL_WINDOW_GTK_H_
+#define CHROME_BROWSER_UI_GTK_EXTENSIONS_SHELL_WINDOW_GTK_H_
+#pragma once
+
+#include <gtk/gtk.h>
+
+#include "chrome/browser/ui/extensions/shell_window.h"
+#include "chrome/browser/ui/gtk/extensions/extension_view_gtk.h"
+#include "ui/base/gtk/gtk_signal.h"
+
+class ExtensionHost;
+
+class ShellWindowGtk : public ShellWindow,
+ public ExtensionViewGtk::Container {
+ public:
+ explicit ShellWindowGtk(ExtensionHost* host);
+
+ // ShellWindow implementation.
+ virtual void Close() OVERRIDE;
+
+ private:
+ virtual ~ShellWindowGtk();
+
+ CHROMEGTK_CALLBACK_1(ShellWindowGtk, gboolean, OnMainWindowDeleteEvent,
+ GdkEvent*);
+
+ GtkWindow* window_;
+};
sky 2012/01/06 20:10:25 DISALLOW_COPY_AND_ASSIGN
Mihai Parparita -not on Chrome 2012/01/06 21:33:19 Done.
+
+#endif // CHROME_BROWSER_UI_GTK_EXTENSIONS_SHELL_WINDOW_GTK_H_

Powered by Google App Engine
This is Rietveld 408576698