diff options
author | powei@chromium.org <powei@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-12 06:18:19 +0000 |
---|---|---|
committer | powei@chromium.org <powei@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-12 06:18:19 +0000 |
commit | 4d600d105c6f07a13a365bebc9d35025b563d966 (patch) | |
tree | 4e0ecb719e59e0a0dbfe0d01f157381a752246c1 /content/public/browser/android/compositor_client.h | |
parent | 5c13605d33248e0c6dcf89e06513bc05f015d5fb (diff) | |
download | chromium_src-4d600d105c6f07a13a365bebc9d35025b563d966.zip chromium_src-4d600d105c6f07a13a365bebc9d35025b563d966.tar.gz chromium_src-4d600d105c6f07a13a365bebc9d35025b563d966.tar.bz2 |
Update the nine patch layer to use UI resources
The old nine-patch layer used priority resource manager for requesting textures.
This patch updates the nine-patch layer to use the UI resource manager.
this patch clarifies the semantics of the aperture in both image and layer
The new semantics corresponds to existing logic on the android-side.
Changes have been made to UIResourceBitmap to use SkPixelRef as ref-counted
of the bitmap content.
The android-side changes:
https://gerrit-int.chromium.org/#/c/43103/
BUG=276482,276487
Review URL: https://chromiumcodereview.appspot.com/22870016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@222732 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/browser/android/compositor_client.h')
-rw-r--r-- | content/public/browser/android/compositor_client.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/content/public/browser/android/compositor_client.h b/content/public/browser/android/compositor_client.h index d70f0c0..d835de1 100644 --- a/content/public/browser/android/compositor_client.h +++ b/content/public/browser/android/compositor_client.h @@ -23,6 +23,12 @@ class CONTENT_EXPORT CompositorClient { // Tells the client that GL resources were lost and need to be reinitialized. virtual void DidLoseResources() {} + // Tells the client that UI resources were lost and need to be reinitialized. + virtual void DidLoseUIResources() {} + + // Mark the UI Resources as being invalid for use. + virtual void UIResourcesAreInvalid() {} + protected: CompositorClient() {} virtual ~CompositorClient() {} |