OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "extensions/browser/extension_user_script_loader.h" | 5 #include "extensions/browser/extension_user_script_loader.h" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 |
7 #include <set> | 9 #include <set> |
8 #include <string> | 10 #include <string> |
9 | 11 |
10 #include "base/bind.h" | 12 #include "base/bind.h" |
11 #include "base/bind_helpers.h" | 13 #include "base/bind_helpers.h" |
12 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
13 #include "base/files/file_util.h" | 15 #include "base/files/file_util.h" |
14 #include "base/version.h" | 16 #include "base/version.h" |
15 #include "content/public/browser/browser_context.h" | 17 #include "content/public/browser/browser_context.h" |
16 #include "content/public/browser/browser_thread.h" | 18 #include "content/public/browser/browser_thread.h" |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 const Extension* extension, | 230 const Extension* extension, |
229 UnloadedExtensionInfo::Reason reason) { | 231 UnloadedExtensionInfo::Reason reason) { |
230 hosts_info_.erase(HostID(HostID::EXTENSIONS, extension->id())); | 232 hosts_info_.erase(HostID(HostID::EXTENSIONS, extension->id())); |
231 } | 233 } |
232 | 234 |
233 void ExtensionUserScriptLoader::OnExtensionSystemReady() { | 235 void ExtensionUserScriptLoader::OnExtensionSystemReady() { |
234 SetReady(true); | 236 SetReady(true); |
235 } | 237 } |
236 | 238 |
237 } // namespace extensions | 239 } // namespace extensions |
OLD | NEW |