| 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_ASH_LAUNCHER_BROWSER_LAUNCHER_ITEM_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_LAUNCHER_ITEM_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_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" |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 virtual void TabInsertedAt(content::WebContents* contents, | 90 virtual void TabInsertedAt(content::WebContents* contents, |
| 91 int index, | 91 int index, |
| 92 bool foreground) OVERRIDE; | 92 bool foreground) OVERRIDE; |
| 93 virtual void TabDetachedAt(content::WebContents* contents, | 93 virtual void TabDetachedAt(content::WebContents* contents, |
| 94 int index) OVERRIDE; | 94 int index) OVERRIDE; |
| 95 virtual void TabChangedAt( | 95 virtual void TabChangedAt( |
| 96 content::WebContents* contents, | 96 content::WebContents* contents, |
| 97 int index, | 97 int index, |
| 98 TabStripModelObserver::TabChangeType change_type) OVERRIDE; | 98 TabStripModelObserver::TabChangeType change_type) OVERRIDE; |
| 99 virtual void TabReplacedAt(TabStripModel* tab_strip_model, | 99 virtual void TabReplacedAt(TabStripModel* tab_strip_model, |
| 100 TabContents* old_contents, | 100 content::WebContents* old_contents, |
| 101 TabContents* new_contents, | 101 content::WebContents* new_contents, |
| 102 int index) OVERRIDE; | 102 int index) OVERRIDE; |
| 103 | 103 |
| 104 // LauncherFaviconLoader::Delegate overrides: | 104 // LauncherFaviconLoader::Delegate overrides: |
| 105 virtual void FaviconUpdated() OVERRIDE; | 105 virtual void FaviconUpdated() OVERRIDE; |
| 106 | 106 |
| 107 // aura::WindowObserver overrides: | 107 // aura::WindowObserver overrides: |
| 108 virtual void OnWindowPropertyChanged(aura::Window* window, | 108 virtual void OnWindowPropertyChanged(aura::Window* window, |
| 109 const void* key, | 109 const void* key, |
| 110 intptr_t old) OVERRIDE; | 110 intptr_t old) OVERRIDE; |
| 111 | 111 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 138 // Whether this is associated with an incognito profile. | 138 // Whether this is associated with an incognito profile. |
| 139 const bool is_incognito_; | 139 const bool is_incognito_; |
| 140 | 140 |
| 141 // Loads launcher sized favicons for panels. | 141 // Loads launcher sized favicons for panels. |
| 142 scoped_ptr<LauncherFaviconLoader> favicon_loader_; | 142 scoped_ptr<LauncherFaviconLoader> favicon_loader_; |
| 143 | 143 |
| 144 DISALLOW_COPY_AND_ASSIGN(BrowserLauncherItemController); | 144 DISALLOW_COPY_AND_ASSIGN(BrowserLauncherItemController); |
| 145 }; | 145 }; |
| 146 | 146 |
| 147 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_LAUNCHER_ITEM_CONTROLLER_H_ | 147 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_LAUNCHER_ITEM_CONTROLLER_H_ |
| OLD | NEW |