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

Unified Diff: chrome/browser/ui/webui/options/chromeos/user_image_source.h

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (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/browser/ui/webui/options/chromeos/user_image_source.h
diff --git a/chrome/browser/ui/webui/options/chromeos/user_image_source.h b/chrome/browser/ui/webui/options/chromeos/user_image_source.h
index 5d9b5417665cb3bd6e50fc06a4e74a68735f64f3..fa2619969071dcd79329d85ac5b541a9554c11c3 100644
--- a/chrome/browser/ui/webui/options/chromeos/user_image_source.h
+++ b/chrome/browser/ui/webui/options/chromeos/user_image_source.h
@@ -27,13 +27,13 @@ class UserImageSource : public content::URLDataSource {
UserImageSource();
// content::URLDataSource implementation.
- virtual std::string GetSource() const OVERRIDE;
+ virtual std::string GetSource() const override;
virtual void StartDataRequest(
const std::string& path,
int render_process_id,
int render_frame_id,
- const content::URLDataSource::GotDataCallback& callback) OVERRIDE;
- virtual std::string GetMimeType(const std::string& path) const OVERRIDE;
+ const content::URLDataSource::GotDataCallback& callback) override;
+ virtual std::string GetMimeType(const std::string& path) const override;
// Returns PNG encoded image for user with specified email. If there's
// no user with such email, returns the first default image.

Powered by Google App Engine
This is Rietveld 408576698