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

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

Issue 2843763004: [DevTools] Introduce EmulationModel which will encapsulate emulation (Closed)
Patch Set: +throttling Created 3 years, 8 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 9b28e4e11f0b4c7a65fea9248c90a10c2d5080a6..914911216d0ac1b8a833666fef4cc3ef03d957b8 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/Target.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/Target.js
@@ -208,14 +208,15 @@ SDK.Target.Capability = {
Target: 1 << 5,
ScreenCapture: 1 << 6,
Tracing: 1 << 7,
- TouchEmulation: 1 << 8,
+ Emulation: 1 << 8,
Security: 1 << 9,
Input: 1 << 10,
Inspector: 1 << 11,
+ DeviceEmulation: 1 << 12,
None: 0,
- AllForTests: (1 << 12) - 1
+ AllForTests: (1 << 13) - 1
};
/**

Powered by Google App Engine
This is Rietveld 408576698