diff options
author | tdresser@chromium.org <tdresser@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-01 20:39:50 +0000 |
---|---|---|
committer | tdresser@chromium.org <tdresser@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-01 20:39:50 +0000 |
commit | 848aca8efdb26a835f46aeabc611addb37a7fde8 (patch) | |
tree | 4881a61a1944c0e02ef77c632403adc5a0f29d5c /ui/aura/gestures | |
parent | 88ad9a35f401d26a5018ea1bd02ebb89887bd1c0 (diff) | |
download | chromium_src-848aca8efdb26a835f46aeabc611addb37a7fde8.zip chromium_src-848aca8efdb26a835f46aeabc611addb37a7fde8.tar.gz chromium_src-848aca8efdb26a835f46aeabc611addb37a7fde8.tar.bz2 |
Update GestureRecognizer State Diagram to use point-ids
A few edges in the state machine were removed in https://chromiumcodereview.appspot.com/9452024/.
This change reflects those changes in the diagram.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/9564013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124476 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura/gestures')
-rw-r--r-- | ui/aura/gestures/gestures.dot | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/aura/gestures/gestures.dot b/ui/aura/gestures/gestures.dot index 8ca0efb..a095575 100644 --- a/ui/aura/gestures/gestures.dot +++ b/ui/aura/gestures/gestures.dot @@ -23,10 +23,10 @@ GS_PENDING_SYNTHETIC_CLICK -> GS_PENDING_SYNTHETIC_CLICK [label= "M0\n S0"]; GS_PENDING_SYNTHETIC_CLICK -> GS_NO_GESTURE [label= "C0\n R0"]; } -GS_SCROLL -> GS_SCROLL [label= "M0\n M1"]; -GS_SCROLL -> GS_NO_GESTURE [label= "C0\n R0\n C1\n R1"]; +GS_SCROLL -> GS_SCROLL [label= "M0"]; +GS_SCROLL -> GS_NO_GESTURE [label= "C0\n R0\n"]; GS_PENDING_SYNTHETIC_CLICK -> GS_PINCH [label= "D1"]; -GS_SCROLL -> GS_PINCH [label= "D0\n D1"]; +GS_SCROLL -> GS_PINCH [label= "D1"]; GS_PINCH -> GS_PINCH [label= "M0\n M1"]; GS_PINCH -> GS_SCROLL [label= "C0\n R0\n C1\n R1"]; } |