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_AURA_LAUNCHER_LAUNCHER_UPDATER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_ASH_LAUNCHER_LAUNCHER_UPDATER_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_AURA_LAUNCHER_LAUNCHER_UPDATER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_ASH_LAUNCHER_LAUNCHER_UPDATER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
11 | 11 |
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/tabs/tab_strip_model_observer.h" | 16 #include "chrome/browser/tabs/tab_strip_model_observer.h" |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 // . If type_ == TYPE_TABBED and all the tabs are app tabs this is -1. | 136 // . If type_ == TYPE_TABBED and all the tabs are app tabs this is -1. |
137 // . Otherwise this is the id of the TYPE_TABBED item. | 137 // . Otherwise this is the id of the TYPE_TABBED item. |
138 ash::LauncherID item_id_; | 138 ash::LauncherID item_id_; |
139 | 139 |
140 // Used for any app tabs. | 140 // Used for any app tabs. |
141 AppTabMap app_map_; | 141 AppTabMap app_map_; |
142 | 142 |
143 DISALLOW_COPY_AND_ASSIGN(LauncherUpdater); | 143 DISALLOW_COPY_AND_ASSIGN(LauncherUpdater); |
144 }; | 144 }; |
145 | 145 |
146 #endif // CHROME_BROWSER_UI_VIEWS_AURA_LAUNCHER_LAUNCHER_UPDATER_H_ | 146 #endif // CHROME_BROWSER_UI_VIEWS_ASH_LAUNCHER_LAUNCHER_UPDATER_H_ |
OLD | NEW |