Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1575)

Unified Diff: android_webview/native/aw_contents.h

Issue 14888002: Android WebView Merged-Thread Hardware Draw (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: android_webview/native/aw_contents.h
diff --git a/android_webview/native/aw_contents.h b/android_webview/native/aw_contents.h
index 751368c155f01c8edb104807e20dfae57abe6585..6508bf367dd37798c61b996bc254cb40b3b597bc 100644
--- a/android_webview/native/aw_contents.h
+++ b/android_webview/native/aw_contents.h
@@ -38,6 +38,7 @@ class AwWebContentsDelegate;
// level of indirection provided by the AwContentsContainer abstraction.
class AwContents : public FindHelper::Listener,
public IconHelper::Listener,
+ public AwRenderViewHostExtClient,
public BrowserViewRenderer::Client {
public:
// Returns the AwContents instance associated with |web_contents|, or NULL.
@@ -132,11 +133,13 @@ class AwContents : public FindHelper::Listener,
virtual void OnReceivedTouchIconUrl(const std::string& url,
const bool precomposed) OVERRIDE;
+ // AwRenderViewHostExtClient implementation.
+ virtual void OnPageScaleFactorChanged(float page_scale_factor) OVERRIDE;
+
// BrowserViewRenderer::Client implementation.
virtual void Invalidate() OVERRIDE;
virtual void OnNewPicture() OVERRIDE;
virtual gfx::Point GetLocationOnScreen() OVERRIDE;
- virtual void OnPageScaleFactorChanged(float page_scale_factor) OVERRIDE;
void ClearCache(JNIEnv* env, jobject obj, jboolean include_disk_files);
void SetPendingWebContentsForPopup(scoped_ptr<content::WebContents> pending);

Powered by Google App Engine
This is Rietveld 408576698