| 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/public/browser/android/ui_resource_provider.h" | 10 #include "content/public/browser/android/ui_resource_provider.h" |
| 10 | 11 |
| 11 namespace cc { | 12 namespace cc { |
| 12 class LayerTreeHost; | 13 class LayerTreeHost; |
| 13 } | 14 } |
| 14 | 15 |
| 15 namespace content { | 16 namespace content { |
| 16 | 17 |
| 17 class UIResourceClientAndroid; | 18 class UIResourceClientAndroid; |
| 18 | 19 |
| 19 class UIResourceProviderImpl : public UIResourceProvider { | 20 class UIResourceProviderImpl : public UIResourceProvider { |
| 20 public: | 21 public: |
| 21 UIResourceProviderImpl(); | 22 UIResourceProviderImpl(); |
| 22 | 23 |
| 23 virtual ~UIResourceProviderImpl(); | 24 virtual ~UIResourceProviderImpl(); |
| 24 | 25 |
| 25 void SetLayerTreeHost(cc::LayerTreeHost* host); | 26 void SetLayerTreeHost(cc::LayerTreeHost* host); |
| 26 | 27 |
| 27 void UIResourcesAreInvalid(); | 28 void UIResourcesAreInvalid(); |
| 28 | 29 |
| 29 virtual cc::UIResourceId CreateUIResource( | 30 virtual cc::UIResourceId CreateUIResource( |
| 30 UIResourceClientAndroid* client) OVERRIDE; | 31 UIResourceClientAndroid* client) OVERRIDE; |
| 31 | 32 |
| 32 virtual void DeleteUIResource(cc::UIResourceId resource_id) OVERRIDE; | 33 virtual void DeleteUIResource(cc::UIResourceId resource_id) OVERRIDE; |
| 33 | 34 |
| 35 ui::SystemUIResourceManager& GetSystemUIResourceManager(); |
| 36 |
| 34 private: | 37 private: |
| 35 typedef base::hash_map<cc::UIResourceId, UIResourceClientAndroid*> | 38 typedef base::hash_map<cc::UIResourceId, UIResourceClientAndroid*> |
| 36 UIResourceClientMap; | 39 UIResourceClientMap; |
| 37 UIResourceClientMap ui_resource_client_map_; | 40 UIResourceClientMap ui_resource_client_map_; |
| 38 | 41 SystemUIResourceManagerImpl system_ui_resource_manager_; |
| 39 cc::LayerTreeHost* host_; | 42 cc::LayerTreeHost* host_; |
| 40 | 43 |
| 41 DISALLOW_COPY_AND_ASSIGN(UIResourceProviderImpl); | 44 DISALLOW_COPY_AND_ASSIGN(UIResourceProviderImpl); |
| 42 }; | 45 }; |
| 43 | 46 |
| 44 } // namespace content | 47 } // namespace content |
| 45 | 48 |
| 46 #endif // CONTENT_BROWSER_ANDROID_UI_RESOURCE_PROVIDER_IMPL_H_ | 49 #endif // CONTENT_BROWSER_ANDROID_UI_RESOURCE_PROVIDER_IMPL_H_ |
| OLD | NEW |