| 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_VIEWS_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_VIEWS_ASH_LAUNCHER_BROWSER_LAUNCHER_ITEM_CONTROLLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "ash/launcher/launcher_types.h" | 11 #include "ash/launcher/launcher_types.h" |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.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/tabs/tab_strip_model_observer.h" | 16 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" |
| 17 #include "chrome/browser/ui/views/ash/launcher/launcher_favicon_loader.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 TabContentsWrapper; | 23 class TabContents; |
| 24 typedef TabContents TabContentsWrapper; |
| 24 | 25 |
| 25 namespace ash { | 26 namespace ash { |
| 26 class LauncherModel; | 27 class LauncherModel; |
| 27 } | 28 } |
| 28 | 29 |
| 29 namespace aura { | 30 namespace aura { |
| 30 class Window; | 31 class Window; |
| 31 } | 32 } |
| 32 | 33 |
| 33 // BrowserLauncherItemController is responsible for keeping the launcher | 34 // BrowserLauncherItemController is responsible for keeping the launcher |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 // ID of the item. | 141 // ID of the item. |
| 141 ash::LauncherID item_id_; | 142 ash::LauncherID item_id_; |
| 142 | 143 |
| 143 // Loads launcher sized favicons for panels. | 144 // Loads launcher sized favicons for panels. |
| 144 scoped_ptr<LauncherFaviconLoader> favicon_loader_; | 145 scoped_ptr<LauncherFaviconLoader> favicon_loader_; |
| 145 | 146 |
| 146 DISALLOW_COPY_AND_ASSIGN(BrowserLauncherItemController); | 147 DISALLOW_COPY_AND_ASSIGN(BrowserLauncherItemController); |
| 147 }; | 148 }; |
| 148 | 149 |
| 149 #endif // CHROME_BROWSER_UI_VIEWS_ASH_LAUNCHER_BROWSER_LAUNCHER_ITEM_CONTROLLER
_H_ | 150 #endif // CHROME_BROWSER_UI_VIEWS_ASH_LAUNCHER_BROWSER_LAUNCHER_ITEM_CONTROLLER
_H_ |
| OLD | NEW |