Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_TOOLBAR_WRENCH_MENU_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TOOLBAR_WRENCH_MENU_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_WRENCH_MENU_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TOOLBAR_WRENCH_MENU_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
| 13 #include "base/time/time.h" | |
| 14 #include "base/timer/elapsed_timer.h" | |
| 13 #include "components/bookmarks/browser/base_bookmark_model_observer.h" | 15 #include "components/bookmarks/browser/base_bookmark_model_observer.h" |
| 14 #include "content/public/browser/notification_observer.h" | 16 #include "content/public/browser/notification_observer.h" |
| 15 #include "content/public/browser/notification_registrar.h" | 17 #include "content/public/browser/notification_registrar.h" |
| 16 #include "ui/base/models/menu_model.h" | 18 #include "ui/base/models/menu_model.h" |
| 17 #include "ui/views/controls/menu/menu_delegate.h" | 19 #include "ui/views/controls/menu/menu_delegate.h" |
| 18 | 20 |
| 19 class BookmarkMenuDelegate; | 21 class BookmarkMenuDelegate; |
| 20 class Browser; | 22 class Browser; |
| 21 class WrenchMenuObserver; | 23 class WrenchMenuObserver; |
| 22 | 24 |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 177 // Used for managing "Recent tabs" menu items. | 179 // Used for managing "Recent tabs" menu items. |
| 178 scoped_ptr<RecentTabsMenuModelDelegate> recent_tabs_menu_model_delegate_; | 180 scoped_ptr<RecentTabsMenuModelDelegate> recent_tabs_menu_model_delegate_; |
| 179 | 181 |
| 180 content::NotificationRegistrar registrar_; | 182 content::NotificationRegistrar registrar_; |
| 181 | 183 |
| 182 // The bit mask of RunFlags. | 184 // The bit mask of RunFlags. |
| 183 const int run_flags_; | 185 const int run_flags_; |
| 184 | 186 |
| 185 ObserverList<WrenchMenuObserver> observer_list_; | 187 ObserverList<WrenchMenuObserver> observer_list_; |
| 186 | 188 |
| 189 // Timer for menu open metrics. | |
|
Peter Kasting
2014/11/14 19:48:59
Nit: This comment adds nothing to the member name.
edwardjung
2014/11/17 15:58:24
Removed.
| |
| 190 base::ElapsedTimer menu_opened_timer_; | |
| 191 | |
| 187 DISALLOW_COPY_AND_ASSIGN(WrenchMenu); | 192 DISALLOW_COPY_AND_ASSIGN(WrenchMenu); |
| 188 }; | 193 }; |
| 189 | 194 |
| 190 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_WRENCH_MENU_H_ | 195 #endif // CHROME_BROWSER_UI_VIEWS_TOOLBAR_WRENCH_MENU_H_ |
| OLD | NEW |