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

Side by Side Diff: chrome/browser/alternate_nav_url_fetcher.cc

Issue 9565003: Merge 124282 - Disable storing cookies from URLFetchers that run with a profile's cookie jar. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/963/src/
Patch Set: Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/autocomplete/search_provider.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/alternate_nav_url_fetcher.h" 5 #include "chrome/browser/alternate_nav_url_fetcher.h"
6 6
7 #include "base/utf_string_conversions.h" 7 #include "base/utf_string_conversions.h"
8 #include "chrome/browser/infobars/infobar_tab_helper.h" 8 #include "chrome/browser/infobars/infobar_tab_helper.h"
9 #include "chrome/browser/intranet_redirect_detector.h" 9 #include "chrome/browser/intranet_redirect_detector.h"
10 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/tab_contents/link_infobar_delegate.h" 11 #include "chrome/browser/tab_contents/link_infobar_delegate.h"
12 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 12 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
13 #include "chrome/common/chrome_notification_types.h" 13 #include "chrome/common/chrome_notification_types.h"
14 #include "content/browser/tab_contents/navigation_controller.h" 14 #include "content/browser/tab_contents/navigation_controller.h"
15 #include "content/browser/tab_contents/navigation_entry.h" 15 #include "content/browser/tab_contents/navigation_entry.h"
16 #include "content/public/browser/notification_service.h" 16 #include "content/public/browser/notification_service.h"
17 #include "content/public/common/url_fetcher.h" 17 #include "content/public/common/url_fetcher.h"
18 #include "grit/generated_resources.h" 18 #include "grit/generated_resources.h"
19 #include "grit/theme_resources_standard.h" 19 #include "grit/theme_resources_standard.h"
20 #include "net/base/load_flags.h"
20 #include "net/base/registry_controlled_domain.h" 21 #include "net/base/registry_controlled_domain.h"
21 #include "net/url_request/url_request.h" 22 #include "net/url_request/url_request.h"
22 #include "ui/base/l10n/l10n_util.h" 23 #include "ui/base/l10n/l10n_util.h"
23 #include "ui/base/resource/resource_bundle.h" 24 #include "ui/base/resource/resource_bundle.h"
24 25
25 // AlternateNavInfoBarDelegate ------------------------------------------------ 26 // AlternateNavInfoBarDelegate ------------------------------------------------
26 27
27 class AlternateNavInfoBarDelegate : public LinkInfoBarDelegate { 28 class AlternateNavInfoBarDelegate : public LinkInfoBarDelegate {
28 public: 29 public:
29 AlternateNavInfoBarDelegate(InfoBarTabHelper* owner, 30 AlternateNavInfoBarDelegate(InfoBarTabHelper* owner,
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 controller_ = controller; 176 controller_ = controller;
176 registrar_.Add(this, content::NOTIFICATION_TAB_CLOSED, 177 registrar_.Add(this, content::NOTIFICATION_TAB_CLOSED,
177 content::Source<NavigationController>(controller_)); 178 content::Source<NavigationController>(controller_));
178 179
179 DCHECK_EQ(NOT_STARTED, state_); 180 DCHECK_EQ(NOT_STARTED, state_);
180 state_ = IN_PROGRESS; 181 state_ = IN_PROGRESS;
181 fetcher_.reset(content::URLFetcher::Create( 182 fetcher_.reset(content::URLFetcher::Create(
182 GURL(alternate_nav_url_), content::URLFetcher::HEAD, this)); 183 GURL(alternate_nav_url_), content::URLFetcher::HEAD, this));
183 fetcher_->SetRequestContext( 184 fetcher_->SetRequestContext(
184 controller_->browser_context()->GetRequestContext()); 185 controller_->browser_context()->GetRequestContext());
186 fetcher_->SetLoadFlags(net::LOAD_DO_NOT_SAVE_COOKIES);
185 fetcher_->Start(); 187 fetcher_->Start();
186 } 188 }
187 189
188 void AlternateNavURLFetcher::SetStatusFromURLFetch( 190 void AlternateNavURLFetcher::SetStatusFromURLFetch(
189 const GURL& url, 191 const GURL& url,
190 const net::URLRequestStatus& status, 192 const net::URLRequestStatus& status,
191 int response_code) { 193 int response_code) {
192 if (!status.is_success() || 194 if (!status.is_success() ||
193 // HTTP 2xx, 401, and 407 all indicate that the target address exists. 195 // HTTP 2xx, 401, and 407 all indicate that the target address exists.
194 (((response_code / 100) != 2) && 196 (((response_code / 100) != 2) &&
(...skipping 22 matching lines...) Expand all
217 return; 219 return;
218 } 220 }
219 221
220 InfoBarTabHelper* infobar_helper = 222 InfoBarTabHelper* infobar_helper =
221 TabContentsWrapper::GetCurrentWrapperForContents( 223 TabContentsWrapper::GetCurrentWrapperForContents(
222 controller_->tab_contents())->infobar_tab_helper(); 224 controller_->tab_contents())->infobar_tab_helper();
223 infobar_helper->AddInfoBar( 225 infobar_helper->AddInfoBar(
224 new AlternateNavInfoBarDelegate(infobar_helper, alternate_nav_url_)); 226 new AlternateNavInfoBarDelegate(infobar_helper, alternate_nav_url_));
225 delete this; 227 delete this;
226 } 228 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/autocomplete/search_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698