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

Unified Diff: chrome/test/chromedriver/chrome/adb_impl.h

Issue 637933002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/test (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/test/chromedriver/chrome/adb_impl.h
diff --git a/chrome/test/chromedriver/chrome/adb_impl.h b/chrome/test/chromedriver/chrome/adb_impl.h
index bf2e6ce391f03e44543b9c17338268cb6cb28e7e..043986d3d5906525c701ecfa7b0f3e8cdad98e89 100644
--- a/chrome/test/chromedriver/chrome/adb_impl.h
+++ b/chrome/test/chromedriver/chrome/adb_impl.h
@@ -26,28 +26,28 @@ class AdbImpl : public Adb {
virtual ~AdbImpl();
// Overridden from Adb:
- virtual Status GetDevices(std::vector<std::string>* devices) OVERRIDE;
+ virtual Status GetDevices(std::vector<std::string>* devices) override;
virtual Status ForwardPort(const std::string& device_serial,
int local_port,
- const std::string& remote_abstract) OVERRIDE;
+ const std::string& remote_abstract) override;
virtual Status SetCommandLineFile(const std::string& device_serial,
const std::string& command_line_file,
const std::string& exec_name,
- const std::string& args) OVERRIDE;
+ const std::string& args) override;
virtual Status CheckAppInstalled(const std::string& device_serial,
- const std::string& package) OVERRIDE;
+ const std::string& package) override;
virtual Status ClearAppData(const std::string& device_serial,
- const std::string& package) OVERRIDE;
+ const std::string& package) override;
virtual Status SetDebugApp(const std::string& device_serial,
- const std::string& package) OVERRIDE;
+ const std::string& package) override;
virtual Status Launch(const std::string& device_serial,
const std::string& package,
- const std::string& activity) OVERRIDE;
+ const std::string& activity) override;
virtual Status ForceStop(const std::string& device_serial,
- const std::string& package) OVERRIDE;
+ const std::string& package) override;
virtual Status GetPidByName(const std::string& device_serial,
const std::string& process_name,
- int* pid) OVERRIDE;
+ int* pid) override;
private:
Status ExecuteCommand(const std::string& command,
« no previous file with comments | « chrome/test/base/web_ui_browser_test_browsertest.cc ('k') | chrome/test/chromedriver/chrome/chrome_android_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698