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

Unified Diff: components/nacl/browser/test_nacl_browser_delegate.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (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
« no previous file with comments | « components/nacl/browser/nacl_process_host.cc ('k') | components/nacl/loader/nacl_ipc_adapter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/browser/test_nacl_browser_delegate.h
diff --git a/components/nacl/browser/test_nacl_browser_delegate.h b/components/nacl/browser/test_nacl_browser_delegate.h
index 9aa57842649354ac99a120f707c58fe368cf64c7..b7aef2aea0888f03ab9e7384807463c9188b9a38 100644
--- a/components/nacl/browser/test_nacl_browser_delegate.h
+++ b/components/nacl/browser/test_nacl_browser_delegate.h
@@ -21,27 +21,27 @@
class TestNaClBrowserDelegate : public NaClBrowserDelegate {
public:
TestNaClBrowserDelegate();
- virtual ~TestNaClBrowserDelegate();
- virtual void ShowMissingArchInfobar(int render_process_id,
- int render_view_id) override;
- virtual bool DialogsAreSuppressed() override;
- virtual bool GetCacheDirectory(base::FilePath* cache_dir) override;
- virtual bool GetPluginDirectory(base::FilePath* plugin_dir) override;
- virtual bool GetPnaclDirectory(base::FilePath* pnacl_dir) override;
- virtual bool GetUserDirectory(base::FilePath* user_dir) override;
- virtual std::string GetVersionString() const override;
- virtual ppapi::host::HostFactory* CreatePpapiHostFactory(
+ ~TestNaClBrowserDelegate() override;
+ void ShowMissingArchInfobar(int render_process_id,
+ int render_view_id) override;
+ bool DialogsAreSuppressed() override;
+ bool GetCacheDirectory(base::FilePath* cache_dir) override;
+ bool GetPluginDirectory(base::FilePath* plugin_dir) override;
+ bool GetPnaclDirectory(base::FilePath* pnacl_dir) override;
+ bool GetUserDirectory(base::FilePath* user_dir) override;
+ std::string GetVersionString() const override;
+ ppapi::host::HostFactory* CreatePpapiHostFactory(
content::BrowserPpapiHost* ppapi_host) override;
- virtual bool MapUrlToLocalFilePath(const GURL& url,
- bool use_blocking_api,
- const base::FilePath& profile_directory,
- base::FilePath* file_path) override;
- virtual void SetDebugPatterns(std::string debug_patterns) override;
- virtual bool URLMatchesDebugPatterns(const GURL& manifest_url) override;
- virtual content::BrowserPpapiHost::OnKeepaliveCallback
- GetOnKeepaliveCallback() override;
- virtual bool IsNonSfiModeAllowed(const base::FilePath& profile_directory,
- const GURL& manifest_url) override;
+ bool MapUrlToLocalFilePath(const GURL& url,
+ bool use_blocking_api,
+ const base::FilePath& profile_directory,
+ base::FilePath* file_path) override;
+ void SetDebugPatterns(std::string debug_patterns) override;
+ bool URLMatchesDebugPatterns(const GURL& manifest_url) override;
+ content::BrowserPpapiHost::OnKeepaliveCallback GetOnKeepaliveCallback()
+ override;
+ bool IsNonSfiModeAllowed(const base::FilePath& profile_directory,
+ const GURL& manifest_url) override;
private:
DISALLOW_COPY_AND_ASSIGN(TestNaClBrowserDelegate);
« no previous file with comments | « components/nacl/browser/nacl_process_host.cc ('k') | components/nacl/loader/nacl_ipc_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698