| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROMECAST_COMMON_CAST_RESOURCE_DELEGATE_H_ | 5 #ifndef CHROMECAST_COMMON_CAST_RESOURCE_DELEGATE_H_ |
| 6 #define CHROMECAST_COMMON_CAST_RESOURCE_DELEGATE_H_ | 6 #define CHROMECAST_COMMON_CAST_RESOURCE_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include <string> | 9 #include <string> |
| 9 | 10 |
| 10 #include "base/macros.h" | 11 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted_memory.h" | 12 #include "base/memory/ref_counted_memory.h" |
| 12 #include "base/memory/scoped_ptr.h" | |
| 13 #include "ui/base/resource/resource_bundle.h" | 13 #include "ui/base/resource/resource_bundle.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class FilePath; | 16 class FilePath; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace gfx { | 19 namespace gfx { |
| 20 class Image; | 20 class Image; |
| 21 } | 21 } |
| 22 | 22 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 typedef base::hash_map<int, base::string16> ExtraLocaledStringMap; | 59 typedef base::hash_map<int, base::string16> ExtraLocaledStringMap; |
| 60 | 60 |
| 61 ExtraLocaledStringMap extra_localized_strings_; | 61 ExtraLocaledStringMap extra_localized_strings_; |
| 62 | 62 |
| 63 DISALLOW_COPY_AND_ASSIGN(CastResourceDelegate); | 63 DISALLOW_COPY_AND_ASSIGN(CastResourceDelegate); |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 } // namespace chromecast | 66 } // namespace chromecast |
| 67 | 67 |
| 68 #endif // CHROMECAST_COMMON_CAST_RESOURCE_DELEGATE_H_ | 68 #endif // CHROMECAST_COMMON_CAST_RESOURCE_DELEGATE_H_ |
| OLD | NEW |