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

Side by Side Diff: extensions/browser/extension_user_script_loader.cc

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 4 years, 12 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « extensions/browser/extension_user_script_loader.h ('k') | extensions/browser/extension_zoom_request_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698