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

Unified Diff: chrome/browser/google/google_update_win.cc

Issue 1109043003: Apply automated fixits for Chrome clang plugin to chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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/google/google_update_win.cc
diff --git a/chrome/browser/google/google_update_win.cc b/chrome/browser/google/google_update_win.cc
index 791279a8cbfade3198e3f6417e2212043b3aa9b6..1e0d1b9c18b4b0b7ff7fbe10602f972a4754041a 100644
--- a/chrome/browser/google/google_update_win.cc
+++ b/chrome/browser/google/google_update_win.cc
@@ -173,16 +173,16 @@ class GoogleUpdateJobObserver : public CComObjectRootEx<CComSingleThreadModel>,
private:
// IJobObserver:
- STDMETHOD(OnShow)();
- STDMETHOD(OnCheckingForUpdate)();
- STDMETHOD(OnUpdateAvailable)(const TCHAR* version_string);
- STDMETHOD(OnWaitingToDownload)();
- STDMETHOD(OnDownloading)(int time_remaining_ms, int pos);
- STDMETHOD(OnWaitingToInstall)();
- STDMETHOD(OnInstalling)();
- STDMETHOD(OnPause)();
- STDMETHOD(OnComplete)(LegacyCompletionCodes code, const TCHAR* text);
- STDMETHOD(SetEventSink)(IProgressWndEvents* event_sink);
+ STDMETHOD(OnShow)() override;
+ STDMETHOD(OnCheckingForUpdate)() override;
+ STDMETHOD(OnUpdateAvailable)(const TCHAR* version_string) override;
+ STDMETHOD(OnWaitingToDownload)() override;
+ STDMETHOD(OnDownloading)(int time_remaining_ms, int pos) override;
+ STDMETHOD(OnWaitingToInstall)() override;
+ STDMETHOD(OnInstalling)() override;
+ STDMETHOD(OnPause)() override;
+ STDMETHOD(OnComplete)(LegacyCompletionCodes code, const TCHAR* text) override;
+ STDMETHOD(SetEventSink)(IProgressWndEvents* event_sink) override;
// The task runner associated with the thread in which the job runs.
scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
« no previous file with comments | « chrome/browser/first_run/try_chrome_dialog_view_browsertest.cc ('k') | chrome/browser/hang_monitor/hung_plugin_action.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698