Chromium Code Reviews| Index: third_party/WebKit/Source/core/frame/Deprecation.cpp |
| diff --git a/third_party/WebKit/Source/core/frame/Deprecation.cpp b/third_party/WebKit/Source/core/frame/Deprecation.cpp |
| index faa5ddd688f1def781ca109030f3cca86b5fca91..4c0d973d8ffdc4786789901cb132dd1e26446ffa 100644 |
| --- a/third_party/WebKit/Source/core/frame/Deprecation.cpp |
| +++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp |
| @@ -461,6 +461,10 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) { |
| case UseCounter::VRDeprecatedGetPose: |
| return replacedBy("VRDisplay.getPose()", "VRDisplay.getFrameData()"); |
| + case UseCounter::DeprecatedBluetoothDeviceUUIDsAttribute: |
| + return "BluetoothDevice.uuids is deprecated. Use getPrimaryServices() to " |
|
Jeffrey Yasskin
2016/10/12 21:37:18
I forgot to mention this, but we should include a
juncai
2016/10/12 21:49:52
Thanks! I'll create a CL to add the removal date.
|
| + "retrieve all available UUIDs."; |
| + |
| // Features that aren't deprecated don't have a deprecation message. |
| default: |
| return String(); |