OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_CONTAINER_H_ | 5 #ifndef CHROME_BROWSER_SIDEBAR_SIDEBAR_CONTAINER_H_ |
6 #define CHROME_BROWSER_SIDEBAR_SIDEBAR_CONTAINER_H_ | 6 #define CHROME_BROWSER_SIDEBAR_SIDEBAR_CONTAINER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
12 #include "base/string16.h" | 12 #include "base/string16.h" |
13 #include "chrome/browser/extensions/image_loading_tracker.h" | 13 #include "chrome/browser/extensions/image_loading_tracker.h" |
14 #include "chrome/browser/tab_contents/tab_contents_delegate.h" | 14 #include "content/browser/tab_contents/tab_contents_delegate.h" |
15 | 15 |
16 class BrowserWindow; | 16 class BrowserWindow; |
17 class Profile; | 17 class Profile; |
18 class RenderViewHost; | 18 class RenderViewHost; |
19 class SkBitmap; | 19 class SkBitmap; |
20 class TabContents; | 20 class TabContents; |
21 | 21 |
22 /////////////////////////////////////////////////////////////////////////////// | 22 /////////////////////////////////////////////////////////////////////////////// |
23 // SidebarContainer | 23 // SidebarContainer |
24 // | 24 // |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 // icon should be used or discarded. | 156 // icon should be used or discarded. |
157 bool use_default_icon_; | 157 bool use_default_icon_; |
158 | 158 |
159 // Helper to load icons from extension asynchronously. | 159 // Helper to load icons from extension asynchronously. |
160 scoped_ptr<ImageLoadingTracker> image_loading_tracker_; | 160 scoped_ptr<ImageLoadingTracker> image_loading_tracker_; |
161 | 161 |
162 DISALLOW_COPY_AND_ASSIGN(SidebarContainer); | 162 DISALLOW_COPY_AND_ASSIGN(SidebarContainer); |
163 }; | 163 }; |
164 | 164 |
165 #endif // CHROME_BROWSER_SIDEBAR_SIDEBAR_CONTAINER_H_ | 165 #endif // CHROME_BROWSER_SIDEBAR_SIDEBAR_CONTAINER_H_ |
OLD | NEW |