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

Unified Diff: chrome/browser/net/chrome_url_request_context.h

Issue 6342016: Remove ChromeURLRequestContext::is_media_ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 9 years, 11 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 | « no previous file | chrome/browser/net/chrome_url_request_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/chrome_url_request_context.h
diff --git a/chrome/browser/net/chrome_url_request_context.h b/chrome/browser/net/chrome_url_request_context.h
index e6c4f0256d0bc54d1e13a3e84a607c2c6f3ece40..4bc90e38dcc1885b52bba4af88011265c09c19b2 100644
--- a/chrome/browser/net/chrome_url_request_context.h
+++ b/chrome/browser/net/chrome_url_request_context.h
@@ -79,9 +79,6 @@ class ChromeURLRequestContext : public net::URLRequestContext {
bool is_off_the_record() const {
return is_off_the_record_;
}
- bool is_media() const {
- return is_media_;
- }
virtual const std::string& GetUserAgent(const GURL& url) const;
@@ -141,9 +138,6 @@ class ChromeURLRequestContext : public net::URLRequestContext {
void set_is_off_the_record(bool is_off_the_record) {
is_off_the_record_ = is_off_the_record;
}
- void set_is_media(bool is_media) {
- is_media_ = is_media;
- }
void set_host_content_settings_map(
HostContentSettingsMap* host_content_settings_map) {
host_content_settings_map_ = host_content_settings_map;
@@ -195,7 +189,6 @@ class ChromeURLRequestContext : public net::URLRequestContext {
scoped_refptr<ExtensionInfoMap> extension_info_map_;
scoped_refptr<PrerenderManager> prerender_manager_;
- bool is_media_;
bool is_off_the_record_;
private:
« no previous file with comments | « no previous file | chrome/browser/net/chrome_url_request_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698