OLD | NEW |
---|---|
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
Mattias Nissler (ping if slow)
2011/01/05 12:08:07
Same here.
battre
2011/01/05 20:23:08
Done.
| |
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/extensions/extension_updater.h" | 5 #include "chrome/browser/extensions/extension_updater.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/file_util.h" | 11 #include "base/file_util.h" |
(...skipping 908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
920 URLFetcher::Create(kExtensionFetcherId, url, URLFetcher::GET, this)); | 920 URLFetcher::Create(kExtensionFetcherId, url, URLFetcher::GET, this)); |
921 extension_fetcher_->set_request_context( | 921 extension_fetcher_->set_request_context( |
922 Profile::GetDefaultRequestContext()); | 922 Profile::GetDefaultRequestContext()); |
923 extension_fetcher_->set_load_flags(net::LOAD_DO_NOT_SEND_COOKIES | | 923 extension_fetcher_->set_load_flags(net::LOAD_DO_NOT_SEND_COOKIES | |
924 net::LOAD_DO_NOT_SAVE_COOKIES | | 924 net::LOAD_DO_NOT_SAVE_COOKIES | |
925 net::LOAD_DISABLE_CACHE); | 925 net::LOAD_DISABLE_CACHE); |
926 extension_fetcher_->Start(); | 926 extension_fetcher_->Start(); |
927 current_extension_fetch_ = ExtensionFetch(id, url, hash, version); | 927 current_extension_fetch_ = ExtensionFetch(id, url, hash, version); |
928 } | 928 } |
929 } | 929 } |
OLD | NEW |