diff options
author | boliu@chromium.org <boliu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-09 15:35:19 +0000 |
---|---|---|
committer | boliu@chromium.org <boliu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-09 15:35:19 +0000 |
commit | a1811b891dd41a27cac5c3cafa01901a0e14165c (patch) | |
tree | a7a7d8fa2e86cceee12bfcd587ad13f45711e77a /android_webview/lib/DEPS | |
parent | 38209e20a1574f696a56a4a27b7c39485192b39d (diff) | |
download | chromium_src-a1811b891dd41a27cac5c3cafa01901a0e14165c.zip chromium_src-a1811b891dd41a27cac5c3cafa01901a0e14165c.tar.gz chromium_src-a1811b891dd41a27cac5c3cafa01901a0e14165c.tar.bz2 |
Android WebView Merged-Thread Hardware Draw
InProcessViewRenderer no longer inherits from the current
implementation class, with most methods left unimplemented for now.
This means the browser compositor is removed when merged thread
mode is turned on.
Synchronous input filter logic is moved to AwContentRenderer[Host]Ext,
since ViewRenderer[Host] will go away after merged thread draw path
is ready. UpdatePageScaleFactor moved similarly.
Need to temporarily add a global AllowIO to temporarily work around
compositor joining raster threads on UI thread on shutdown.
Caveats:
* This code is still not used until some flags are turned on.
* Will break merged thread mode with existing browser compositor
draw path
* cc initialization changes required for webview are not there.
* Lots more work required related to GL state restore and respecting
transforms etc
* Patch ignores software draw path, including case of not attached
to window.
BUG=230202, 230195
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/14888002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@199223 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/lib/DEPS')
-rw-r--r-- | android_webview/lib/DEPS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android_webview/lib/DEPS b/android_webview/lib/DEPS index b0da14f..8460d68 100644 --- a/android_webview/lib/DEPS +++ b/android_webview/lib/DEPS @@ -1,5 +1,5 @@ include_rules = [ - "+cc/switches.h", + "+cc/base/switches.h", "+components", # For jni registers. "+content/public", ] |