| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_TOOLBAR_BACK_FORWARD_MENU_MODEL_H_ | 5 #ifndef CHROME_BROWSER_UI_TOOLBAR_BACK_FORWARD_MENU_MODEL_H_ |
| 6 #define CHROME_BROWSER_UI_TOOLBAR_BACK_FORWARD_MENU_MODEL_H_ | 6 #define CHROME_BROWSER_UI_TOOLBAR_BACK_FORWARD_MENU_MODEL_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "base/string16.h" | 13 #include "base/string16.h" |
| 14 #include "chrome/browser/favicon/favicon_service.h" | 14 #include "chrome/browser/favicon/favicon_service.h" |
| 15 #include "chrome/common/cancelable_task_tracker.h" | 15 #include "chrome/common/cancelable_task_tracker.h" |
| 16 #include "ui/base/models/menu_model.h" | 16 #include "ui/base/models/menu_model.h" |
| 17 #include "webkit/glue/window_open_disposition.h" | 17 #include "ui/base/window_open_disposition.h" |
| 18 | 18 |
| 19 class Browser; | 19 class Browser; |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 class NavigationEntry; | 22 class NavigationEntry; |
| 23 class WebContents; | 23 class WebContents; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace gfx { | 26 namespace gfx { |
| 27 class Image; | 27 class Image; |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 // Used for loading favicons. | 202 // Used for loading favicons. |
| 203 CancelableTaskTracker cancelable_task_tracker_; | 203 CancelableTaskTracker cancelable_task_tracker_; |
| 204 | 204 |
| 205 // Used for receiving notifications when an icon is changed. | 205 // Used for receiving notifications when an icon is changed. |
| 206 ui::MenuModelDelegate* menu_model_delegate_; | 206 ui::MenuModelDelegate* menu_model_delegate_; |
| 207 | 207 |
| 208 DISALLOW_COPY_AND_ASSIGN(BackForwardMenuModel); | 208 DISALLOW_COPY_AND_ASSIGN(BackForwardMenuModel); |
| 209 }; | 209 }; |
| 210 | 210 |
| 211 #endif // CHROME_BROWSER_UI_TOOLBAR_BACK_FORWARD_MENU_MODEL_H_ | 211 #endif // CHROME_BROWSER_UI_TOOLBAR_BACK_FORWARD_MENU_MODEL_H_ |
| OLD | NEW |