| 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 CONTENT_BROWSER_ANDROID_UI_RESOURCE_PROVIDER_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_ANDROID_UI_RESOURCE_PROVIDER_IMPL_H_ |
| 6 #define CONTENT_BROWSER_ANDROID_UI_RESOURCE_PROVIDER_IMPL_H_ | 6 #define CONTENT_BROWSER_ANDROID_UI_RESOURCE_PROVIDER_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/containers/hash_tables.h" | 8 #include "base/containers/hash_tables.h" |
| 9 #include "content/browser/android/system_ui_resource_manager_impl.h" | 9 #include "content/browser/android/system_ui_resource_manager_impl.h" |
| 10 #include "content/public/browser/android/ui_resource_provider.h" | 10 #include "content/public/browser/android/ui_resource_provider.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 void UIResourcesAreInvalid(); | 28 void UIResourcesAreInvalid(); |
| 29 | 29 |
| 30 virtual cc::UIResourceId CreateUIResource( | 30 virtual cc::UIResourceId CreateUIResource( |
| 31 UIResourceClientAndroid* client) OVERRIDE; | 31 UIResourceClientAndroid* client) OVERRIDE; |
| 32 | 32 |
| 33 virtual void DeleteUIResource(cc::UIResourceId resource_id) OVERRIDE; | 33 virtual void DeleteUIResource(cc::UIResourceId resource_id) OVERRIDE; |
| 34 | 34 |
| 35 ui::SystemUIResourceManager& GetSystemUIResourceManager(); | 35 ui::SystemUIResourceManager& GetSystemUIResourceManager(); |
| 36 | 36 |
| 37 void SetSupportsETC1NonPowerOfTwo(bool supports_etc1_npot) { |
| 38 supports_etc1_npot_ = supports_etc1_npot; |
| 39 } |
| 40 virtual bool SupportsETC1NonPowerOfTwo() const OVERRIDE; |
| 41 |
| 37 private: | 42 private: |
| 38 typedef base::hash_map<cc::UIResourceId, UIResourceClientAndroid*> | 43 typedef base::hash_map<cc::UIResourceId, UIResourceClientAndroid*> |
| 39 UIResourceClientMap; | 44 UIResourceClientMap; |
| 40 UIResourceClientMap ui_resource_client_map_; | 45 UIResourceClientMap ui_resource_client_map_; |
| 41 SystemUIResourceManagerImpl system_ui_resource_manager_; | 46 SystemUIResourceManagerImpl system_ui_resource_manager_; |
| 42 cc::LayerTreeHost* host_; | 47 cc::LayerTreeHost* host_; |
| 48 bool supports_etc1_npot_; |
| 43 | 49 |
| 44 DISALLOW_COPY_AND_ASSIGN(UIResourceProviderImpl); | 50 DISALLOW_COPY_AND_ASSIGN(UIResourceProviderImpl); |
| 45 }; | 51 }; |
| 46 | 52 |
| 47 } // namespace content | 53 } // namespace content |
| 48 | 54 |
| 49 #endif // CONTENT_BROWSER_ANDROID_UI_RESOURCE_PROVIDER_IMPL_H_ | 55 #endif // CONTENT_BROWSER_ANDROID_UI_RESOURCE_PROVIDER_IMPL_H_ |
| OLD | NEW |