| 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 namespace chromecast { | 23 namespace chromecast { |
| 24 | 24 |
| 25 // A singleton resource bundle delegate. Primary purpose is to indicate the | 25 // A singleton resource bundle delegate. Primary purpose is to indicate the |
| 26 // correct locale pack file to load. | 26 // correct locale pack file to load. |
| 27 class CastResourceDelegate : public ui::ResourceBundle::Delegate { | 27 class CastResourceDelegate : public ui::ResourceBundle::Delegate { |
| 28 public: | 28 public: |
| 29 // Returns the singleton of delegate. It doesn't create an instance. | 29 // Returns the singleton of delegate. It doesn't create an instance. |
| 30 static CastResourceDelegate* GetInstance(); | 30 static CastResourceDelegate* GetInstance(); |
| 31 | 31 |
| 32 CastResourceDelegate(); | 32 CastResourceDelegate(); |
| 33 virtual ~CastResourceDelegate(); | 33 ~CastResourceDelegate() override; |
| 34 | 34 |
| 35 // ui:ResourceBundle::Delegate implementation: | 35 // ui:ResourceBundle::Delegate implementation: |
| 36 virtual base::FilePath GetPathForResourcePack( | 36 base::FilePath GetPathForResourcePack( |
| 37 const base::FilePath& pack_path, | 37 const base::FilePath& pack_path, |
| 38 ui::ScaleFactor scale_factor) override; | 38 ui::ScaleFactor scale_factor) override; |
| 39 virtual base::FilePath GetPathForLocalePack( | 39 base::FilePath GetPathForLocalePack( |
| 40 const base::FilePath& pack_path, | 40 const base::FilePath& pack_path, |
| 41 const std::string& locale) override; | 41 const std::string& locale) override; |
| 42 virtual gfx::Image GetImageNamed(int resource_id) override; | 42 gfx::Image GetImageNamed(int resource_id) override; |
| 43 virtual gfx::Image GetNativeImageNamed( | 43 gfx::Image GetNativeImageNamed( |
| 44 int resource_id, | 44 int resource_id, |
| 45 ui::ResourceBundle::ImageRTL rtl) override; | 45 ui::ResourceBundle::ImageRTL rtl) override; |
| 46 virtual base::RefCountedStaticMemory* LoadDataResourceBytes( | 46 base::RefCountedStaticMemory* LoadDataResourceBytes( |
| 47 int resource_id, | 47 int resource_id, |
| 48 ui::ScaleFactor scale_factor) override; | 48 ui::ScaleFactor scale_factor) override; |
| 49 virtual bool GetRawDataResource(int resource_id, | 49 bool GetRawDataResource(int resource_id, |
| 50 ui::ScaleFactor scale_factor, | 50 ui::ScaleFactor scale_factor, |
| 51 base::StringPiece* value) override; | 51 base::StringPiece* value) override; |
| 52 virtual bool GetLocalizedString(int message_id, | 52 bool GetLocalizedString(int message_id, base::string16* value) override; |
| 53 base::string16* value) override; | 53 scoped_ptr<gfx::Font> GetFont(ui::ResourceBundle::FontStyle style) override; |
| 54 virtual scoped_ptr<gfx::Font> GetFont( | |
| 55 ui::ResourceBundle::FontStyle style) override; | |
| 56 | 54 |
| 57 // Adds/removes/clears extra localized strings. | 55 // Adds/removes/clears extra localized strings. |
| 58 void AddExtraLocalizedString(int resource_id, | 56 void AddExtraLocalizedString(int resource_id, |
| 59 const base::string16& localized); | 57 const base::string16& localized); |
| 60 void RemoveExtraLocalizedString(int resource_id); | 58 void RemoveExtraLocalizedString(int resource_id); |
| 61 void ClearAllExtraLocalizedStrings(); | 59 void ClearAllExtraLocalizedStrings(); |
| 62 | 60 |
| 63 private: | 61 private: |
| 64 typedef base::hash_map<int, base::string16> ExtraLocaledStringMap; | 62 typedef base::hash_map<int, base::string16> ExtraLocaledStringMap; |
| 65 | 63 |
| 66 ExtraLocaledStringMap extra_localized_strings_; | 64 ExtraLocaledStringMap extra_localized_strings_; |
| 67 | 65 |
| 68 DISALLOW_COPY_AND_ASSIGN(CastResourceDelegate); | 66 DISALLOW_COPY_AND_ASSIGN(CastResourceDelegate); |
| 69 }; | 67 }; |
| 70 | 68 |
| 71 } // namespace chromecast | 69 } // namespace chromecast |
| 72 | 70 |
| 73 #endif // CHROMECAST_COMMON_CAST_RESOURCE_DELEGATE_H_ | 71 #endif // CHROMECAST_COMMON_CAST_RESOURCE_DELEGATE_H_ |
| OLD | NEW |