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

Side by Side Diff: chrome/browser/media/media_browsertest.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_MEDIA_MEDIA_BROWSERTEST_H_ 5 #ifndef CHROME_BROWSER_MEDIA_MEDIA_BROWSERTEST_H_
6 #define CHROME_BROWSER_MEDIA_MEDIA_BROWSERTEST_H_ 6 #define CHROME_BROWSER_MEDIA_MEDIA_BROWSERTEST_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "chrome/test/base/in_process_browser_test.h" 10 #include "chrome/test/base/in_process_browser_test.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 // Opens a URL and waits for the document title to match either one of the 43 // Opens a URL and waits for the document title to match either one of the
44 // default strings or the expected string. Returns the matching title value. 44 // default strings or the expected string. Returns the matching title value.
45 std::string RunTest(const GURL& gurl, const std::string& expected); 45 std::string RunTest(const GURL& gurl, const std::string& expected);
46 46
47 virtual void AddWaitForTitles(content::TitleWatcher* title_watcher); 47 virtual void AddWaitForTitles(content::TitleWatcher* title_watcher);
48 48
49 // Fails test and sets document title to kPluginCrashed when a plugin crashes. 49 // Fails test and sets document title to kPluginCrashed when a plugin crashes.
50 // If IgnorePluginCrash(true) is called then plugin crash is ignored. 50 // If IgnorePluginCrash(true) is called then plugin crash is ignored.
51 virtual void PluginCrashed(const base::FilePath& plugin_path, 51 virtual void PluginCrashed(const base::FilePath& plugin_path,
52 base::ProcessId plugin_pid) OVERRIDE; 52 base::ProcessId plugin_pid) override;
53 53
54 // When called, the test will ignore any plugin crashes and not fail the test. 54 // When called, the test will ignore any plugin crashes and not fail the test.
55 void IgnorePluginCrash(); 55 void IgnorePluginCrash();
56 56
57 private: 57 private:
58 bool ignore_plugin_crash_; 58 bool ignore_plugin_crash_;
59 }; 59 };
60 60
61 #endif // CHROME_BROWSER_MEDIA_MEDIA_BROWSERTEST_H_ 61 #endif // CHROME_BROWSER_MEDIA_MEDIA_BROWSERTEST_H_
OLDNEW
« no previous file with comments | « chrome/browser/media/fake_desktop_media_list.h ('k') | chrome/browser/media/media_capture_devices_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698