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

Unified Diff: content/child/bluetooth/bluetooth_message_filter.h

Issue 699843003: bluetooth: Impl uses new WebBluetoothDevice in content/browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Addressing comments from 12 - 14 Created 6 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/child/bluetooth/bluetooth_message_filter.h
diff --git a/content/child/geofencing/geofencing_message_filter.h b/content/child/bluetooth/bluetooth_message_filter.h
similarity index 61%
copy from content/child/geofencing/geofencing_message_filter.h
copy to content/child/bluetooth/bluetooth_message_filter.h
index 3a95d423ccd51ea0b74e507092ac1abc3a17941e..db18380688f9edc31761e2644d65f44cf99b3d16 100644
--- a/content/child/geofencing/geofencing_message_filter.h
+++ b/content/child/bluetooth/bluetooth_message_filter.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_CHILD_GEOFENCING_GEOFENCING_MESSAGE_FILTER_H_
-#define CONTENT_CHILD_GEOFENCING_GEOFENCING_MESSAGE_FILTER_H_
+#ifndef CONTENT_CHILD_BLUETOOTH_BLUETOOTH_MESSAGE_FILTER_H_
+#define CONTENT_CHILD_BLUETOOTH_BLUETOOTH_MESSAGE_FILTER_H_
#include "content/child/child_message_filter.h"
@@ -15,12 +15,12 @@ namespace content {
class ThreadSafeSender;
-class GeofencingMessageFilter : public ChildMessageFilter {
+class BluetoothMessageFilter : public ChildMessageFilter {
public:
- explicit GeofencingMessageFilter(ThreadSafeSender* thread_safe_sender);
+ explicit BluetoothMessageFilter(ThreadSafeSender* thread_safe_sender);
private:
- ~GeofencingMessageFilter() override;
+ ~BluetoothMessageFilter() override;
// ChildMessageFilter implementation:
base::TaskRunner* OverrideTaskRunnerForMessage(
@@ -30,9 +30,9 @@ class GeofencingMessageFilter : public ChildMessageFilter {
scoped_refptr<base::MessageLoopProxy> main_thread_loop_proxy_;
scoped_refptr<ThreadSafeSender> thread_safe_sender_;
- DISALLOW_COPY_AND_ASSIGN(GeofencingMessageFilter);
+ DISALLOW_COPY_AND_ASSIGN(BluetoothMessageFilter);
};
} // namespace content
-#endif // CONTENT_CHILD_GEOFENCING_GEOFENCING_MESSAGE_FILTER_H_
+#endif // CONTENT_CHILD_BLUETOOTH_BLUETOOTH_MESSAGE_FILTER_H_

Powered by Google App Engine
This is Rietveld 408576698