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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/Target.js

Issue 2731383002: [DevTools] Make touch emulation work with OOPIF. (Closed)
Patch Set: dialog fix to separate patch Created 3 years, 9 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: third_party/WebKit/Source/devtools/front_end/sdk/Target.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/Target.js b/third_party/WebKit/Source/devtools/front_end/sdk/Target.js
index daf25f7a3de998e7504c2bfe6706774c61637387..174c9c9d7fe26065b7f508c53ba815ec0205bea1 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/Target.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/Target.js
@@ -194,10 +194,11 @@ SDK.Target.Capability = {
Target: 1 << 5,
ScreenCapture: 1 << 6,
Tracing: 1 << 7,
+ TouchEmulation: 1 << 8,
None: 0,
- AllForTests: (1 << 8) - 1
+ AllForTests: (1 << 9) - 1
};
/**

Powered by Google App Engine
This is Rietveld 408576698