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_VIEWS_ASH_LAUNCHER_BROWSER_LAUNCHER_ITEM_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_LAUNCHER_ITEM_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_ASH_LAUNCHER_BROWSER_LAUNCHER_ITEM_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_LAUNCHER_ITEM_CONTROLLER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ash/launcher/launcher_types.h" | 10 #include "ash/launcher/launcher_types.h" |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/string16.h" | 15 #include "base/string16.h" |
| 16 #include "chrome/browser/ui/ash/launcher/launcher_favicon_loader.h" |
16 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" | 17 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" |
17 #include "chrome/browser/ui/views/ash/launcher/launcher_favicon_loader.h" | |
18 #include "ui/aura/window_observer.h" | 18 #include "ui/aura/window_observer.h" |
19 | 19 |
20 class Browser; | 20 class Browser; |
21 class ChromeLauncherController; | 21 class ChromeLauncherController; |
22 class LauncherFaviconLoader; | 22 class LauncherFaviconLoader; |
23 class TabContents; | 23 class TabContents; |
24 | 24 |
25 namespace ash { | 25 namespace ash { |
26 class LauncherModel; | 26 class LauncherModel; |
27 } | 27 } |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 | 149 |
150 // ID of the item. | 150 // ID of the item. |
151 ash::LauncherID item_id_; | 151 ash::LauncherID item_id_; |
152 | 152 |
153 // Loads launcher sized favicons for panels. | 153 // Loads launcher sized favicons for panels. |
154 scoped_ptr<LauncherFaviconLoader> favicon_loader_; | 154 scoped_ptr<LauncherFaviconLoader> favicon_loader_; |
155 | 155 |
156 DISALLOW_COPY_AND_ASSIGN(BrowserLauncherItemController); | 156 DISALLOW_COPY_AND_ASSIGN(BrowserLauncherItemController); |
157 }; | 157 }; |
158 | 158 |
159 #endif // CHROME_BROWSER_UI_VIEWS_ASH_LAUNCHER_BROWSER_LAUNCHER_ITEM_CONTROLLER
_H_ | 159 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_LAUNCHER_ITEM_CONTROLLER_H_ |
OLD | NEW |