| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_SIDEBAR_SIDEBAR_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_SIDEBAR_SIDEBAR_MANAGER_H_ |
| 6 #define CHROME_BROWSER_SIDEBAR_SIDEBAR_MANAGER_H_ | 6 #define CHROME_BROWSER_SIDEBAR_SIDEBAR_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | |
| 10 #include <string> | 9 #include <string> |
| 11 | 10 |
| 12 #include "base/ref_counted.h" | 11 #include "base/ref_counted.h" |
| 13 #include "base/string16.h" | 12 #include "base/string16.h" |
| 14 #include "chrome/browser/sidebar/sidebar_container.h" | 13 #include "chrome/browser/sidebar/sidebar_container.h" |
| 15 #include "chrome/common/notification_observer.h" | 14 #include "chrome/common/notification_observer.h" |
| 16 #include "chrome/common/notification_registrar.h" | 15 #include "chrome/common/notification_registrar.h" |
| 17 | 16 |
| 18 class GURL; | 17 class GURL; |
| 19 class PrefService; | 18 class PrefService; |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 | 146 |
| 148 typedef std::map<SidebarContainer*, TabContents*> | 147 typedef std::map<SidebarContainer*, TabContents*> |
| 149 SidebarHostToTabMap; | 148 SidebarHostToTabMap; |
| 150 SidebarHostToTabMap sidebar_host_to_tab_; | 149 SidebarHostToTabMap sidebar_host_to_tab_; |
| 151 | 150 |
| 152 DISALLOW_COPY_AND_ASSIGN(SidebarManager); | 151 DISALLOW_COPY_AND_ASSIGN(SidebarManager); |
| 153 }; | 152 }; |
| 154 | 153 |
| 155 #endif // CHROME_BROWSER_SIDEBAR_SIDEBAR_MANAGER_H_ | 154 #endif // CHROME_BROWSER_SIDEBAR_SIDEBAR_MANAGER_H_ |
| 156 | 155 |
| OLD | NEW |