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

Side by Side Diff: chrome/browser/ui/views/toolbar/extension_toolbar_menu_view.h

Issue 324393002: Extension Toolbar redesign, part 1 (overflow) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for review Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_VIEWS_TOOLBAR_EXTENSION_TOOLBAR_MENU_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_EXTENSION_TOOLBAR_MENU_VIEW_H_
7
8 #include "ui/views/view.h"
9
10 class Browser;
11 class BrowserActionsContainer;
12
13 // ExtensionToolbarMenuView is the view containing the ToolbarAction icons.
Devlin 2014/06/23 17:55:29 This comment doesn't seem quite right. "ToolbarAc
Finnur 2014/06/25 16:18:11 SGTM
14 class ExtensionToolbarMenuView : public views::View {
15 public:
16 explicit ExtensionToolbarMenuView(Browser* browser);
17 virtual ~ExtensionToolbarMenuView();
18
19 // Overridden from View.
20 virtual gfx::Size GetPreferredSize() const OVERRIDE;
21 virtual void Layout() OVERRIDE;
22
23 private:
24 Browser* browser_;
25
26 BrowserActionsContainer* container_;
27
28 DISALLOW_COPY_AND_ASSIGN(ExtensionToolbarMenuView);
29 };
30
31 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_EXTENSION_TOOLBAR_MENU_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698