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

Unified Diff: ash/test/test_metro_viewer_process_host.h

Issue 1088593006: Update {virtual,override} to follow C++11 style in ash. (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
« no previous file with comments | « ash/system/win/audio/tray_audio_delegate_win.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/test/test_metro_viewer_process_host.h
diff --git a/ash/test/test_metro_viewer_process_host.h b/ash/test/test_metro_viewer_process_host.h
index bb39351533fbf1aaca802abaf254458fffb78369..a25095ef215f2b657c4d770e75bbd0035cd4d819 100644
--- a/ash/test/test_metro_viewer_process_host.h
+++ b/ash/test/test_metro_viewer_process_host.h
@@ -17,7 +17,7 @@ class TestMetroViewerProcessHost : public win8::MetroViewerProcessHost {
public:
TestMetroViewerProcessHost(
const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner);
- virtual ~TestMetroViewerProcessHost();
+ ~TestMetroViewerProcessHost() override;
bool closed_unexpectedly() { return closed_unexpectedly_; }
@@ -27,13 +27,12 @@ class TestMetroViewerProcessHost : public win8::MetroViewerProcessHost {
private:
// win8::MetroViewerProcessHost implementation
- virtual void OnChannelError() override;
- virtual void OnSetTargetSurface(gfx::NativeViewId target_surface,
- float device_scale) override;
- virtual void OnOpenURL(const base::string16& url) override;
- virtual void OnHandleSearchRequest(
- const base::string16& search_string) override;
- virtual void OnWindowSizeChanged(uint32 width, uint32 height) override;
+ void OnChannelError() override;
+ void OnSetTargetSurface(gfx::NativeViewId target_surface,
+ float device_scale) override;
+ void OnOpenURL(const base::string16& url) override;
+ void OnHandleSearchRequest(const base::string16& search_string) override;
+ void OnWindowSizeChanged(uint32 width, uint32 height) override;
bool closed_unexpectedly_;
« no previous file with comments | « ash/system/win/audio/tray_audio_delegate_win.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698