diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-19 20:49:52 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-19 20:49:52 +0000 |
commit | a0ce3284a4fb3aee664c8ad998fb6c4d4b8d0080 (patch) | |
tree | 2a160a7305bbf6ef8f02249fa2c86af28676263c /chrome/browser/chrome_content_browser_client.h | |
parent | dcc592a99ae6a563a200cf253d1d3856c511582d (diff) | |
download | chromium_src-a0ce3284a4fb3aee664c8ad998fb6c4d4b8d0080.zip chromium_src-a0ce3284a4fb3aee664c8ad998fb6c4d4b8d0080.tar.gz chromium_src-a0ce3284a4fb3aee664c8ad998fb6c4d4b8d0080.tar.bz2 |
Move simple download calls to chrome code to use ContentBrowserClient interface.
BUG=82782
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=97477
Review URL: http://codereview.chromium.org/7670086
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97506 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_content_browser_client.h')
-rw-r--r-- | chrome/browser/chrome_content_browser_client.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/chrome_content_browser_client.h b/chrome/browser/chrome_content_browser_client.h index aee1a1be..95858ab 100644 --- a/chrome/browser/chrome_content_browser_client.h +++ b/chrome/browser/chrome_content_browser_client.h @@ -51,7 +51,8 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient { virtual net::URLRequestContext* OverrideRequestContextForURL( const GURL& url, const content::ResourceContext& context) OVERRIDE; virtual QuotaPermissionContext* CreateQuotaPermissionContext() OVERRIDE; - virtual void RevealFolderInOS(const FilePath& path) OVERRIDE; + virtual void OpenItem(const FilePath& path) OVERRIDE; + virtual void ShowItemInFolder(const FilePath& path) OVERRIDE; virtual void AllowCertificateError( SSLCertErrorHandler* handler, bool overridable, |