diff options
author | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-14 17:27:44 +0000 |
---|---|---|
committer | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-14 17:27:44 +0000 |
commit | f62558674e1c1f625cffa01d003ff1040575fb4f (patch) | |
tree | f576ced392fd04a68aa86f8cda4bd91938fdea6b /content/child | |
parent | e6c43c1244f8b35669900d810d0247c316b1af2c (diff) | |
download | chromium_src-f62558674e1c1f625cffa01d003ff1040575fb4f.zip chromium_src-f62558674e1c1f625cffa01d003ff1040575fb4f.tar.gz chromium_src-f62558674e1c1f625cffa01d003ff1040575fb4f.tar.bz2 |
Revert 263644 "[DevTools] Touch emulation in content."
Reason for revert: broke
http://build.chromium.org/p/chromium/builders/Linux%20x64/builds/63653/
by introducing two new static-initializers into the chrome binary:
# velocity_tracker.cc ui::(anonymous namespace)::LeastSquaresVelocityTrackerStrategy::HORIZON
# velocity_tracker.cc ui::(anonymous namespace)::ASSUME_POINTER_STOPPED_TIME
> [DevTools] Touch emulation in content.
>
> When renderer requests touch emulation using mouse, host creates
> a TouchEmulator object and passes mouse, mouse wheel and keyboard events
> to emulator before sending them to renderer.
>
> Emulator completely blocks mouse-related events, and instead generates
> touch events. Those touch events are handled over to gesture provider
> after being acked by renderer. Resulting gestures are sent to the renderer.
>
> When shift is pressed, scroll gestures are converted to pinch gestures, so
> user can scale the page. This is required because multitouch is not yet
> supported by emulator.
>
> BUG=337142
>
> Review URL: https://codereview.chromium.org/138163016
TBR=dgozman@chromium.org
Review URL: https://codereview.chromium.org/237353003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263647 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/child')
-rw-r--r-- | content/child/blink_platform_impl.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc index 237d2c8..9b2898e 100644 --- a/content/child/blink_platform_impl.cc +++ b/content/child/blink_platform_impl.cc @@ -701,7 +701,6 @@ const DataResource kDataResources[] = { { "generatePassword", IDR_PASSWORD_GENERATION_ICON, ui::SCALE_FACTOR_100P }, { "generatePasswordHover", IDR_PASSWORD_GENERATION_ICON_HOVER, ui::SCALE_FACTOR_100P }, - // TODO(dgozman): remove this after moving to content-based touch emulation. { "syntheticTouchCursor", IDR_SYNTHETIC_TOUCH_CURSOR, ui::SCALE_FACTOR_100P }, }; |