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 |
}; |
/** |