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

Unified Diff: chrome/browser/extensions/api/record/record_api_test.cc

Issue 12212047: Linux/ChromeOS Chromium style checker cleanup, chrome/browser/extensions edition. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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/extensions/api/record/record_api_test.cc
===================================================================
--- chrome/browser/extensions/api/record/record_api_test.cc (revision 181040)
+++ chrome/browser/extensions/api/record/record_api_test.cc (working copy)
@@ -69,10 +69,10 @@
explicit TestProcessStrategy(std::vector<FilePath>* temp_files)
: command_line_(CommandLine::NO_PROGRAM), temp_files_(temp_files) {}
- ~TestProcessStrategy() {}
+ virtual ~TestProcessStrategy() {}
// Pump the blocking pool queue, since this is needed during test.
- void PumpBlockingPool() OVERRIDE {
+ virtual void PumpBlockingPool() OVERRIDE {
content::BrowserThread::GetBlockingPool()->FlushForTesting();
}
@@ -86,8 +86,8 @@
// visited. If there are any "bad" URLS, don't visit these, but
// create a ".errors" file listing them.
// 2. If record-stats, then create a mock stats file.
- void RunProcess(const CommandLine& command_line,
- std::vector<std::string>* errors) OVERRIDE {
+ virtual void RunProcess(const CommandLine& command_line,
+ std::vector<std::string>* errors) OVERRIDE {
command_line_ = command_line;
visited_urls_.clear();
@@ -195,7 +195,7 @@
// Override SetUpCommandline to specify a dummy user_data_dir, which
// should be replaced. Clear record-mode, playback-mode, visit-urls,
// record-stats, and load-extension.
- void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
+ virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
std::vector<std::string> remove_switches;
remove_switches.push_back(switches::kUserDataDir);
« no previous file with comments | « chrome/browser/extensions/api/preference/preference_api.cc ('k') | chrome/browser/extensions/api/serial/serial_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698