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

Unified Diff: chrome/browser/views/browser_actions_container.h

Issue 243001: Implement Browser Actions extensions.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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/views/browser_actions_container.h
===================================================================
--- chrome/browser/views/browser_actions_container.h (revision 0)
+++ chrome/browser/views/browser_actions_container.h (revision 0)
@@ -0,0 +1,69 @@
+// Copyright (c) 2009 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_VIEWS_BROWSER_ACTIONS_PANEL_H_
+#define CHROME_BROWSER_VIEWS_BROWSER_ACTIONS_PANEL_H_
+
+#include <vector>
+
+#include "chrome/common/notification_observer.h"
+#include "chrome/common/notification_registrar.h"
+#include "views/view.h"
+
+class ContextualAction;
+class Profile;
+class ToolbarView;
+namespace views {
+class ImageButton;
+}
+
+////////////////////////////////////////////////////////////////////////////////
+//
+// The BrowserActionsContainer is a container view, responsible for drawing the
+// icons that represent browser actions (extensions that add icons to the
+// toolbar).
+//
+////////////////////////////////////////////////////////////////////////////////
+class BrowserActionsContainer : public views::View,
+ public NotificationObserver {
+ public:
+ BrowserActionsContainer(Profile* profile, ToolbarView* toolbar);
+ virtual ~BrowserActionsContainer();
+
+ // Update the views to reflect the state of the browser action icons.
+ void RefreshBrowserActionViews();
+
+ // Delete all browser action views.
+ void DeleteBrowserActionViews();
+
+ // Called when a browser action becomes visible/hidden.
+ void OnBrowserActionVisibilityChanged();
+
+ // Called when the user clicks on the browser action icon.
+ void OnBrowserActionExecuted(const ContextualAction& browser_action);
+
+ // Overridden from views::View:
+ virtual gfx::Size GetPreferredSize();
+ virtual void Layout();
+
+ // Overridden from NotificationObserver:
+ virtual void Observe(NotificationType type,
+ const NotificationSource& source,
+ const NotificationDetails& details);
+
+ private:
+ // The vector of browser actions (icons/image buttons for each action).
+ std::vector<views::ImageButton*> browser_action_views_;
+
+ NotificationRegistrar registrar_;
+
+ Profile* profile_;
+
+ // The toolbar that owns us.
+ ToolbarView* toolbar_;
+
+ DISALLOW_COPY_AND_ASSIGN(BrowserActionsContainer);
+};
+
+#endif // CHROME_BROWSER_VIEWS_BROWSER_ACTIONS_PANEL_H_
Property changes on: chrome\browser\views\browser_actions_container.h
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698