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 |