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

Unified Diff: chrome/utility/media_galleries/ipc_data_source.h

Issue 638863002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/utility (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
Index: chrome/utility/media_galleries/ipc_data_source.h
diff --git a/chrome/utility/media_galleries/ipc_data_source.h b/chrome/utility/media_galleries/ipc_data_source.h
index 6fb3b76a58645e56687e15b4b74ee0a786e9da9b..955837fa3d12a7fdd0ba5d2e689c6079b5978478 100644
--- a/chrome/utility/media_galleries/ipc_data_source.h
+++ b/chrome/utility/media_galleries/ipc_data_source.h
@@ -32,16 +32,16 @@ class IPCDataSource: public media::DataSource,
// Implementation of DataSource. These methods may be called on any single
// thread. First usage of these methods attaches a thread checker.
- virtual void Stop() OVERRIDE;
+ virtual void Stop() override;
virtual void Read(int64 position, int size, uint8* data,
- const ReadCB& read_cb) OVERRIDE;
- virtual bool GetSize(int64* size_out) OVERRIDE;
- virtual bool IsStreaming() OVERRIDE;
- virtual void SetBitrate(int bitrate) OVERRIDE;
+ const ReadCB& read_cb) override;
+ virtual bool GetSize(int64* size_out) override;
+ virtual bool IsStreaming() override;
+ virtual void SetBitrate(int bitrate) override;
// Implementation of UtilityMessageHandler. May only be called on the utility
// thread.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
private:
struct Request {

Powered by Google App Engine
This is Rietveld 408576698