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

Unified Diff: content/common/bluetooth/web_bluetooth_device_id.cc

Issue 2506813003: Use new wrapper types for web_bluetooth.mojom (Closed)
Patch Set: merge master and resolve conflicts Created 4 years, 1 month 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: content/common/bluetooth/web_bluetooth_device_id.cc
diff --git a/content/common/bluetooth/web_bluetooth_device_id.cc b/content/common/bluetooth/web_bluetooth_device_id.cc
index 823ed0fd979cd6736a587d525848457153e084b2..94749e75f831cc0391332971279540fdecde15a3 100644
--- a/content/common/bluetooth/web_bluetooth_device_id.cc
+++ b/content/common/bluetooth/web_bluetooth_device_id.cc
@@ -79,9 +79,9 @@ bool WebBluetoothDeviceId::operator!=(
return !(*this == device_id);
}
+} // namespace content
+
std::ostream& operator<<(std::ostream& out,
- const WebBluetoothDeviceId& device_id) {
+ const content::WebBluetoothDeviceId& device_id) {
dcheng 2016/11/24 04:56:49 Strictly speaking, shouldn't this be in namespace
juncai 2016/11/28 22:25:21 If it is in the namespace content as before, the f
dcheng 2016/11/28 22:29:33 I don't think I understand what this has to do wit
juncai 2016/11/29 04:23:28 Done.
return out << device_id.str();
}
-
-} // namespace content

Powered by Google App Engine
This is Rietveld 408576698