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

Unified Diff: chrome/browser/gtk/extension_installed_bubble_gtk.h

Issue 6251001: Move chrome/browser/gtk/ to chrome/browser/ui/gtk/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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/gtk/extension_installed_bubble_gtk.h
===================================================================
--- chrome/browser/gtk/extension_installed_bubble_gtk.h (revision 71352)
+++ chrome/browser/gtk/extension_installed_bubble_gtk.h (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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.
@@ -6,92 +6,7 @@
#define CHROME_BROWSER_GTK_EXTENSION_INSTALLED_BUBBLE_GTK_H_
#pragma once
-#include "base/ref_counted.h"
-#include "base/scoped_ptr.h"
-#include "chrome/browser/gtk/custom_button.h"
-#include "chrome/browser/gtk/info_bubble_gtk.h"
-#include "chrome/common/notification_observer.h"
-#include "chrome/common/notification_registrar.h"
-#include "third_party/skia/include/core/SkBitmap.h"
+#include "chrome/browser/ui/gtk/extension_installed_bubble_gtk.h"
+// TODO(msw): remove this file once all includes have been updated.
-class Browser;
-class BrowserWindowGtk;
-class Extension;
-class SkBitmap;
-
-// Provides feedback to the user upon successful installation of an
-// extension. Depending on the type of extension, the InfoBubble will
-// point to:
-// OMNIBOX_KEYWORD-> The omnibox.
-// BROWSER_ACTION -> The browserAction icon in the toolbar.
-// PAGE_ACTION -> A preview of the page action icon in the location
-// bar which is shown while the InfoBubble is shown.
-// GENERIC -> The wrench menu. This case includes page actions that
-// don't specify a default icon.
-//
-// ExtensionInstallBubble manages its own lifetime.
-class ExtensionInstalledBubbleGtk
- : public InfoBubbleGtkDelegate,
- public NotificationObserver,
- public base::RefCountedThreadSafe<ExtensionInstalledBubbleGtk> {
- public:
- // The behavior and content of this InfoBubble comes in three varieties.
- enum BubbleType {
- OMNIBOX_KEYWORD,
- BROWSER_ACTION,
- PAGE_ACTION,
- GENERIC
- };
-
- // Creates the ExtensionInstalledBubble and schedules it to be shown once
- // the extension has loaded. |extension| is the installed extension. |browser|
- // is the browser window which will host the bubble. |icon| is the install
- // icon of the extension.
- static void Show(const Extension* extension, Browser *browser, SkBitmap icon);
-
- private:
- friend class base::RefCountedThreadSafe<ExtensionInstalledBubbleGtk>;
-
- // Private ctor. Registers a listener for EXTENSION_LOADED.
- ExtensionInstalledBubbleGtk(const Extension* extension, Browser *browser,
- SkBitmap icon);
-
- virtual ~ExtensionInstalledBubbleGtk();
-
- // Shows the bubble. Called internally via PostTask.
- void ShowInternal();
-
- // NotificationObserver
- virtual void Observe(NotificationType type,
- const NotificationSource& source,
- const NotificationDetails& details);
-
- // InfoBubbleDelegate
- virtual void InfoBubbleClosing(InfoBubbleGtk* info_bubble,
- bool closed_by_escape);
-
- // Calls Release() internally. Called internally via PostTask.
- void Close();
-
- static void OnButtonClick(GtkWidget* button,
- ExtensionInstalledBubbleGtk* toolbar);
-
- const Extension* extension_;
- Browser *browser_;
- SkBitmap icon_;
- NotificationRegistrar registrar_;
- BubbleType type_;
-
- // The number of times to retry showing the bubble if the browser action
- // toolbar is animating.
- int animation_wait_retries_;
-
- // The 'x' that the user can press to hide the info bubble shelf.
- scoped_ptr<CustomDrawButton> close_button_;
-
- InfoBubbleGtk* info_bubble_;
-
- DISALLOW_COPY_AND_ASSIGN(ExtensionInstalledBubbleGtk);
-};
-
#endif // CHROME_BROWSER_GTK_EXTENSION_INSTALLED_BUBBLE_GTK_H_
« no previous file with comments | « chrome/browser/gtk/extension_install_prompt_gtk.cc ('k') | chrome/browser/gtk/extension_installed_bubble_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698