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

Side by Side Diff: content/child/geofencing/geofencing_dispatcher.h

Issue 630743005: Replace OVERRIDE and FINAL with override and final in content/child/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_CHILD_GEOFENCING_GEOFENCING_DISPATCHER_H_ 5 #ifndef CONTENT_CHILD_GEOFENCING_GEOFENCING_DISPATCHER_H_
6 #define CONTENT_CHILD_GEOFENCING_GEOFENCING_DISPATCHER_H_ 6 #define CONTENT_CHILD_GEOFENCING_GEOFENCING_DISPATCHER_H_
7 7
8 #include "base/id_map.h" 8 #include "base/id_map.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 void OnUnregisterRegionComplete(int thread_id, 56 void OnUnregisterRegionComplete(int thread_id,
57 int request_id, 57 int request_id,
58 GeofencingStatus status); 58 GeofencingStatus status);
59 void OnGetRegisteredRegionsComplete( 59 void OnGetRegisteredRegionsComplete(
60 int thread_id, 60 int thread_id,
61 int request_id, 61 int request_id,
62 GeofencingStatus status, 62 GeofencingStatus status,
63 const std::map<std::string, blink::WebCircularGeofencingRegion>& regions); 63 const std::map<std::string, blink::WebCircularGeofencingRegion>& regions);
64 64
65 // WorkerTaskRunner::Observer implementation. 65 // WorkerTaskRunner::Observer implementation.
66 virtual void OnWorkerRunLoopStopped() OVERRIDE; 66 virtual void OnWorkerRunLoopStopped() override;
67 67
68 scoped_refptr<ThreadSafeSender> thread_safe_sender_; 68 scoped_refptr<ThreadSafeSender> thread_safe_sender_;
69 IDMap<blink::WebGeofencingCallbacks, IDMapOwnPointer> 69 IDMap<blink::WebGeofencingCallbacks, IDMapOwnPointer>
70 region_registration_requests_; 70 region_registration_requests_;
71 IDMap<blink::WebGeofencingCallbacks, IDMapOwnPointer> 71 IDMap<blink::WebGeofencingCallbacks, IDMapOwnPointer>
72 region_unregistration_requests_; 72 region_unregistration_requests_;
73 IDMap<blink::WebGeofencingRegionsCallbacks, IDMapOwnPointer> 73 IDMap<blink::WebGeofencingRegionsCallbacks, IDMapOwnPointer>
74 get_registered_regions_requests_; 74 get_registered_regions_requests_;
75 75
76 DISALLOW_COPY_AND_ASSIGN(GeofencingDispatcher); 76 DISALLOW_COPY_AND_ASSIGN(GeofencingDispatcher);
77 }; 77 };
78 78
79 } // namespace content 79 } // namespace content
80 80
81 #endif // CONTENT_CHILD_GEOFENCING_GEOFENCING_DISPATCHER_H_ 81 #endif // CONTENT_CHILD_GEOFENCING_GEOFENCING_DISPATCHER_H_
OLDNEW
« no previous file with comments | « content/child/fileapi/webfilewriter_impl.h ('k') | content/child/geofencing/geofencing_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698