summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/browser/content_browser_client.h9
-rw-r--r--content/browser/mock_content_browser_client.cc10
-rw-r--r--content/browser/mock_content_browser_client.h3
-rw-r--r--content/shell/shell_content_browser_client.cc10
-rw-r--r--content/shell/shell_content_browser_client.h3
5 files changed, 0 insertions, 35 deletions
diff --git a/content/browser/content_browser_client.h b/content/browser/content_browser_client.h
index faabda4..0f755ef 100644
--- a/content/browser/content_browser_client.h
+++ b/content/browser/content_browser_client.h
@@ -301,15 +301,6 @@ class ContentBrowserClient {
// This can be called on any thread.
virtual FilePath GetDefaultDownloadDirectory() = 0;
- // Returns the "default" request context. There is no such thing in the world
- // of multiple profiles, and all calls to this need to be removed.
- virtual net::URLRequestContextGetter*
- GetDefaultRequestContextDeprecatedCrBug64339() = 0;
-
- // Returns the system request context, a context tied to no browser context.
- // This is called on the UI thread.
- virtual net::URLRequestContextGetter* GetSystemRequestContext() = 0;
-
#if defined(OS_POSIX) && !defined(OS_MACOSX)
// Can return an optional fd for crash handling, otherwise returns -1.
virtual int GetCrashSignalFD(const std::string& process_type) = 0;
diff --git a/content/browser/mock_content_browser_client.cc b/content/browser/mock_content_browser_client.cc
index 9daa752..8d6af00 100644
--- a/content/browser/mock_content_browser_client.cc
+++ b/content/browser/mock_content_browser_client.cc
@@ -267,16 +267,6 @@ FilePath MockContentBrowserClient::GetDefaultDownloadDirectory() {
return download_dir_.path();
}
-net::URLRequestContextGetter*
-MockContentBrowserClient::GetDefaultRequestContextDeprecatedCrBug64339() {
- return NULL;
-}
-
-net::URLRequestContextGetter*
-MockContentBrowserClient::GetSystemRequestContext() {
- return NULL;
-}
-
#if defined(OS_POSIX) && !defined(OS_MACOSX)
int MockContentBrowserClient::GetCrashSignalFD(
const std::string& process_type) {
diff --git a/content/browser/mock_content_browser_client.h b/content/browser/mock_content_browser_client.h
index b8c88b71..d7384a6 100644
--- a/content/browser/mock_content_browser_client.h
+++ b/content/browser/mock_content_browser_client.h
@@ -125,9 +125,6 @@ class MockContentBrowserClient : 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;
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;