| 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 3e8e8ced36d3514f8b7c36e4d54b0341348c474e..9aa57842649354ac99a120f707c58fe368cf64c7 100644
|
| --- a/components/nacl/browser/test_nacl_browser_delegate.h
|
| +++ b/components/nacl/browser/test_nacl_browser_delegate.h
|
| @@ -23,25 +23,25 @@ class TestNaClBrowserDelegate : public NaClBrowserDelegate {
|
| 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;
|
| + 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(
|
| - content::BrowserPpapiHost* ppapi_host) OVERRIDE;
|
| + 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;
|
| + 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;
|
| + GetOnKeepaliveCallback() override;
|
| virtual bool IsNonSfiModeAllowed(const base::FilePath& profile_directory,
|
| - const GURL& manifest_url) OVERRIDE;
|
| + const GURL& manifest_url) override;
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(TestNaClBrowserDelegate);
|
|
|