OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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_EXTENSIONS_EXTENSION_VIEW_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_VIEW_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_VIEW_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_VIEW_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 #include "base/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
11 #include "chrome/browser/extensions/extension_host.h" | 11 #include "chrome/browser/extensions/extension_host.h" |
12 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
13 #include "skia/include/SkBitmap.h" | 13 #include "third_party/skia/include/core/SkBitmap.h" |
14 | 14 |
15 // TODO(port): Port these files. | 15 // TODO(port): Port these files. |
16 #if defined(OS_WIN) | 16 #if defined(OS_WIN) |
17 #include "views/controls/hwnd_view.h" | 17 #include "views/controls/hwnd_view.h" |
18 #else | 18 #else |
19 #include "views/view.h" | 19 #include "views/view.h" |
20 #include "chrome/common/temp_scaffolding_stubs.h" | 20 #include "chrome/common/temp_scaffolding_stubs.h" |
21 #endif | 21 #endif |
22 | 22 |
23 class Browser; | 23 class Browser; |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 SkBitmap pending_background_; | 69 SkBitmap pending_background_; |
70 | 70 |
71 // What we should set the preferred width to once the ExtensionView has | 71 // What we should set the preferred width to once the ExtensionView has |
72 // loaded. | 72 // loaded. |
73 int pending_preferred_width_; | 73 int pending_preferred_width_; |
74 | 74 |
75 DISALLOW_COPY_AND_ASSIGN(ExtensionView); | 75 DISALLOW_COPY_AND_ASSIGN(ExtensionView); |
76 }; | 76 }; |
77 | 77 |
78 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_VIEW_H_ | 78 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_VIEW_H_ |
OLD | NEW |