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

Unified Diff: third_party/WebKit/Source/core/frame/Deprecation.cpp

Issue 2408773003: Make BluetoothDevice.uuids attribute deprecated (Closed)
Patch Set: merge master and resolve conflicts Created 4 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/UseCounter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698