Chromium Code Reviews| Index: content/public/browser/android/compositor_client.h |
| diff --git a/content/public/browser/android/compositor_client.h b/content/public/browser/android/compositor_client.h |
| index d70f0c07af31600194d3f25086e6c4e67151aef1..c36db324ff22f7f085668c929c5bb22fc359bf73 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() {} |
| + |
| + // Invalidates the UI Resources in the client. |
|
aelias_OOO_until_Jul13
2013/08/30 06:20:41
I don't understand what "Invalidate" means in this
powei
2013/09/03 23:36:05
Done. Renamed to UIResourcesAreInvalid
|
| + virtual void InvalidateUIResources() {} |
| + |
| protected: |
| CompositorClient() {} |
| virtual ~CompositorClient() {} |