| 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_COMMON_RESOURCE_BUNDLE_H__ | 5 #ifndef APP_RESOURCE_BUNDLE_H_ |
| 6 #define CHROME_COMMON_RESOURCE_BUNDLE_H__ | 6 #define APP_RESOURCE_BUNDLE_H_ |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 | 9 |
| 10 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
| 11 #include <windows.h> | 11 #include <windows.h> |
| 12 #endif | 12 #endif |
| 13 | 13 |
| 14 #include <map> | 14 #include <map> |
| 15 #include <string> | 15 #include <string> |
| 16 | 16 |
| 17 #include "base/basictypes.h" | 17 #include "base/basictypes.h" |
| 18 #include "base/file_path.h" | 18 #include "base/file_path.h" |
| 19 #include "base/lock.h" | 19 #include "base/lock.h" |
| 20 #include "base/scoped_ptr.h" | 20 #include "base/scoped_ptr.h" |
| 21 #include "chrome/browser/extensions/extension.h" | 21 #include "chrome/browser/extensions/extension.h" |
| 22 | 22 |
| 23 #if defined(OS_LINUX) || defined(OS_MACOSX) | 23 #if defined(OS_LINUX) || defined(OS_MACOSX) |
| 24 namespace base { | 24 namespace base { |
| 25 class DataPack; | 25 class DataPack; |
| 26 }; | 26 }; |
| 27 #endif | 27 #endif |
| 28 #if defined(OS_LINUX) | 28 #if defined(OS_LINUX) |
| 29 typedef struct _GdkPixbuf GdkPixbuf; | 29 typedef struct _GdkPixbuf GdkPixbuf; |
| 30 #endif | 30 #endif |
| 31 class ChromeFont; | 31 class ChromeFont; |
| 32 class Extension; | 32 class Extension; |
| 33 class SkBitmap; | 33 class SkBitmap; |
| 34 class StringPiece; | 34 class StringPiece; |
| 35 | 35 |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 scoped_ptr<ChromeFont> large_font_; | 193 scoped_ptr<ChromeFont> large_font_; |
| 194 scoped_ptr<ChromeFont> web_font_; | 194 scoped_ptr<ChromeFont> web_font_; |
| 195 | 195 |
| 196 static ResourceBundle* g_shared_instance_; | 196 static ResourceBundle* g_shared_instance_; |
| 197 | 197 |
| 198 scoped_ptr<Extension> theme_extension_; | 198 scoped_ptr<Extension> theme_extension_; |
| 199 | 199 |
| 200 DISALLOW_EVIL_CONSTRUCTORS(ResourceBundle); | 200 DISALLOW_EVIL_CONSTRUCTORS(ResourceBundle); |
| 201 }; | 201 }; |
| 202 | 202 |
| 203 #endif // CHROME_COMMON_RESOURCE_BUNDLE_H__ | 203 #endif // APP_RESOURCE_BUNDLE_H_ |
| OLD | NEW |