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

Unified Diff: content/browser/device_sensors/data_fetcher_shared_memory.h

Issue 633503002: Replacing the OVERRIDE with override and FINAL with final in content/browser/device_sensors (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/browser/device_sensors/data_fetcher_shared_memory_base_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/device_sensors/data_fetcher_shared_memory.h
diff --git a/content/browser/device_sensors/data_fetcher_shared_memory.h b/content/browser/device_sensors/data_fetcher_shared_memory.h
index bd5c8c425d845e78d5585796ad2394cf8edbac63..4715cbbcdb14f4573725c7e191d41d0b59bd5404 100644
--- a/content/browser/device_sensors/data_fetcher_shared_memory.h
+++ b/content/browser/device_sensors/data_fetcher_shared_memory.h
@@ -30,8 +30,8 @@ class CONTENT_EXPORT DataFetcherSharedMemory
virtual ~DataFetcherSharedMemory();
private:
- virtual bool Start(ConsumerType consumer_type, void* buffer) OVERRIDE;
- virtual bool Stop(ConsumerType consumer_type) OVERRIDE;
+ virtual bool Start(ConsumerType consumer_type, void* buffer) override;
+ virtual bool Stop(ConsumerType consumer_type) override;
#if !defined(OS_ANDROID)
DeviceMotionHardwareBuffer* motion_buffer_;
@@ -39,8 +39,8 @@ class CONTENT_EXPORT DataFetcherSharedMemory
DeviceLightHardwareBuffer* light_buffer_;
#endif
#if defined(OS_MACOSX)
- virtual void Fetch(unsigned consumer_bitmask) OVERRIDE;
- virtual FetcherType GetType() const OVERRIDE;
+ virtual void Fetch(unsigned consumer_bitmask) override;
+ virtual FetcherType GetType() const override;
scoped_ptr<SuddenMotionSensor> sudden_motion_sensor_;
#elif defined(OS_WIN)
@@ -48,7 +48,7 @@ class CONTENT_EXPORT DataFetcherSharedMemory
class SensorEventSinkMotion;
class SensorEventSinkOrientation;
- virtual FetcherType GetType() const OVERRIDE;
+ virtual FetcherType GetType() const override;
bool RegisterForSensor(REFSENSOR_TYPE_ID sensor_type, ISensor** sensor,
scoped_refptr<SensorEventSink> event_sink);
« no previous file with comments | « no previous file | content/browser/device_sensors/data_fetcher_shared_memory_base_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698