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_ASH_LAUNCHER_BROWSER_STATUS_MONITOR_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_STATUS_MONITOR_H_ |
6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_STATUS_MONITOR_H_ | 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_STATUS_MONITOR_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
75 content::WebContents* old_contents, | 75 content::WebContents* old_contents, |
76 content::WebContents* new_contents, | 76 content::WebContents* new_contents, |
77 int index) OVERRIDE; | 77 int index) OVERRIDE; |
78 | 78 |
79 private: | 79 private: |
80 typedef std::map<Browser*, std::string> BrowserToAppIDMap; | 80 typedef std::map<Browser*, std::string> BrowserToAppIDMap; |
81 | 81 |
82 // Update app state for |contents|. | 82 // Update app state for |contents|. |
83 void UpdateAppState(content::WebContents* contents); | 83 void UpdateAppState(content::WebContents* contents); |
84 | 84 |
85 // Update browser item status. | |
Mr4D (OOO till 08-26)
2013/09/06 16:11:12
The comment is the same as the function name. What
simonhong_
2013/09/06 18:52:58
Done.
| |
86 void UpdateBrowserItemStatus(); | |
87 | |
85 ChromeLauncherController* launcher_controller_; | 88 ChromeLauncherController* launcher_controller_; |
86 | 89 |
87 // Hold all observed activation clients. | 90 // Hold all observed activation clients. |
88 ScopedObserverWithDuplicatedSources<aura::client::ActivationClient, | 91 ScopedObserverWithDuplicatedSources<aura::client::ActivationClient, |
89 aura::client::ActivationChangeObserver> observed_activation_clients_; | 92 aura::client::ActivationChangeObserver> observed_activation_clients_; |
90 | 93 |
91 // Hold all observed root windows. | 94 // Hold all observed root windows. |
92 ScopedObserver<aura::Window, aura::WindowObserver> observed_root_windows_; | 95 ScopedObserver<aura::Window, aura::WindowObserver> observed_root_windows_; |
93 | 96 |
94 BrowserToAppIDMap browser_to_app_id_map_; | 97 BrowserToAppIDMap browser_to_app_id_map_; |
95 | 98 |
96 DISALLOW_COPY_AND_ASSIGN(BrowserStatusMonitor); | 99 DISALLOW_COPY_AND_ASSIGN(BrowserStatusMonitor); |
97 }; | 100 }; |
98 | 101 |
99 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_STATUS_MONITOR_H_ | 102 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_STATUS_MONITOR_H_ |
OLD | NEW |