summaryrefslogtreecommitdiffstats
path: root/content/shell
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-29 19:18:12 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-29 19:18:12 +0000
commit48c9e7f72123b1c0f0027a27f0ad18af891ff03c (patch)
tree821e131affb73c9a372096a2f6e5800234baddf2 /content/shell
parent235ee5302b6ec073eedb2522b5e2c46d63232e0f (diff)
downloadchromium_src-48c9e7f72123b1c0f0027a27f0ad18af891ff03c.zip
chromium_src-48c9e7f72123b1c0f0027a27f0ad18af891ff03c.tar.gz
chromium_src-48c9e7f72123b1c0f0027a27f0ad18af891ff03c.tar.bz2
Remove unneeded calls from the ContentBrowserClient.
Removes one deprecated call, plus one that was added in anticipation of use but was never used. BUG=76788,97742 TEST=no change Review URL: http://codereview.chromium.org/8016004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103327 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell')
-rw-r--r--content/shell/shell_content_browser_client.cc10
-rw-r--r--content/shell/shell_content_browser_client.h3
2 files changed, 0 insertions, 13 deletions
diff --git a/content/shell/shell_content_browser_client.cc b/content/shell/shell_content_browser_client.cc
index a8eb258..d98d292 100644
--- a/content/shell/shell_content_browser_client.cc
+++ b/content/shell/shell_content_browser_client.cc
@@ -271,16 +271,6 @@ FilePath ShellContentBrowserClient::GetDefaultDownloadDirectory() {
return FilePath();
}
-net::URLRequestContextGetter*
-ShellContentBrowserClient::GetDefaultRequestContextDeprecatedCrBug64339() {
- return NULL;
-}
-
-net::URLRequestContextGetter*
-ShellContentBrowserClient::GetSystemRequestContext() {
- return NULL;
-}
-
#if defined(OS_POSIX) && !defined(OS_MACOSX)
int ShellContentBrowserClient::GetCrashSignalFD(
const std::string& process_type) {
diff --git a/content/shell/shell_content_browser_client.h b/content/shell/shell_content_browser_client.h
index 033897c..38c63f9 100644
--- a/content/shell/shell_content_browser_client.h
+++ b/content/shell/shell_content_browser_client.h
@@ -137,9 +137,6 @@ class ShellContentBrowserClient : public ContentBrowserClient
virtual void ClearCache(RenderViewHost* rvh) OVERRIDE;
virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE;
virtual FilePath GetDefaultDownloadDirectory() OVERRIDE;
- virtual net::URLRequestContextGetter*
- GetDefaultRequestContextDeprecatedCrBug64339() OVERRIDE;
- virtual net::URLRequestContextGetter* GetSystemRequestContext() OVERRIDE;
#if defined(OS_POSIX) && !defined(OS_MACOSX)
virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE;