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

Unified Diff: chrome/browser/tab_contents/tab_contents.h

Issue 3036038: ChromeFrame currently overrides the request context for intercepting network ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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
Index: chrome/browser/tab_contents/tab_contents.h
===================================================================
--- chrome/browser/tab_contents/tab_contents.h (revision 54821)
+++ chrome/browser/tab_contents/tab_contents.h (working copy)
@@ -652,12 +652,6 @@
// times, subsequent calls are ignored.
void OnCloseStarted();
- // Getter/Setters for the url request context to be used for this tab.
- void set_request_context(URLRequestContextGetter* context);
- URLRequestContextGetter* request_context() const {
- return request_context_.get();
- }
-
LanguageState& language_state() {
return language_state_;
}
@@ -1265,11 +1259,6 @@
// The time that we started to close the tab.
base::TimeTicks tab_close_start_time_;
- // Contextual information to be used for requests created here.
- // Can be NULL in which case we defer to the request context from the
- // profile
- scoped_refptr<URLRequestContextGetter> request_context_;
-
// Information about the language the page is in and has been translated to.
LanguageState language_state_;

Powered by Google App Engine
This is Rietveld 408576698