| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/extensions/blacklist_state_fetcher.h" | 5 #include "chrome/browser/extensions/blacklist_state_fetcher.h" |
| 6 | 6 |
| 7 #include "base/strings/stringprintf.h" | 7 #include "base/strings/stringprintf.h" |
| 8 #include "base/threading/thread_task_runner_handle.h" | 8 #include "base/threading/thread_task_runner_handle.h" |
| 9 #include "chrome/browser/browser_process.h" | 9 #include "chrome/browser/browser_process.h" |
| 10 #include "chrome/browser/safe_browsing/protocol_manager_helper.h" | |
| 11 #include "chrome/browser/safe_browsing/safe_browsing_service.h" | 10 #include "chrome/browser/safe_browsing/safe_browsing_service.h" |
| 12 #include "chrome/common/safe_browsing/crx_info.pb.h" | 11 #include "chrome/common/safe_browsing/crx_info.pb.h" |
| 13 #include "google_apis/google_api_keys.h" | 12 #include "google_apis/google_api_keys.h" |
| 14 #include "net/base/escape.h" | 13 #include "net/base/escape.h" |
| 15 #include "net/url_request/url_request_context.h" | 14 #include "net/url_request/url_request_context.h" |
| 16 #include "net/url_request/url_request_context_getter.h" | 15 #include "net/url_request/url_request_context_getter.h" |
| 17 #include "net/url_request/url_request_status.h" | 16 #include "net/url_request/url_request_status.h" |
| 18 #include "url/gurl.h" | 17 #include "url/gurl.h" |
| 19 | 18 |
| 20 using content::BrowserThread; | 19 using content::BrowserThread; |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 for (CallbackMultiMap::const_iterator callback_it = range.first; | 142 for (CallbackMultiMap::const_iterator callback_it = range.first; |
| 144 callback_it != range.second; | 143 callback_it != range.second; |
| 145 ++callback_it) { | 144 ++callback_it) { |
| 146 callback_it->second.Run(state); | 145 callback_it->second.Run(state); |
| 147 } | 146 } |
| 148 | 147 |
| 149 callbacks_.erase(range.first, range.second); | 148 callbacks_.erase(range.first, range.second); |
| 150 } | 149 } |
| 151 | 150 |
| 152 } // namespace extensions | 151 } // namespace extensions |
| OLD | NEW |