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

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 56031896b452222e7cf62dfd23fc6f739737bdc1..80e5102d0829bbf2bb118046d3156e63e66eb3c0 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -464,6 +464,10 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) {
case UseCounter::VRDeprecatedGetPose:
return replacedBy("VRDisplay.getPose()", "VRDisplay.getFrameData()");
+ case UseCounter::DeprecatedBluetoothDeviceUUIDsAttribute:
+ return "BluetoothDevice.uuids attribute is deprecated, replace it with "
ortuno 2016/10/11 00:50:42 nit: "BluetoothDevice.uuids is deprecated. Use get
juncai 2016/10/11 17:31:46 Done.
+ "uses of getPrimaryServices().";
+
// 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