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

Side by Side Diff: gin/modules/module_registry.cc

Issue 1541743002: Switch to standard integer types in gin/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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
« no previous file with comments | « gin/modules/module_registry.h ('k') | gin/modules/module_registry_unittest.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 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 "gin/modules/module_registry.h" 5 #include "gin/modules/module_registry.h"
6 6
7 #include <stddef.h>
8 #include <stdint.h>
9
7 #include <string> 10 #include <string>
8 #include <vector> 11 #include <vector>
9 12
10 #include "base/logging.h" 13 #include "base/logging.h"
11 #include "gin/arguments.h" 14 #include "gin/arguments.h"
12 #include "gin/converter.h" 15 #include "gin/converter.h"
13 #include "gin/modules/module_registry_observer.h" 16 #include "gin/modules/module_registry_observer.h"
14 #include "gin/per_context_data.h" 17 #include "gin/per_context_data.h"
15 #include "gin/per_isolate_data.h" 18 #include "gin/per_isolate_data.h"
16 #include "gin/public/wrapper_info.h" 19 #include "gin/public/wrapper_info.h"
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 for (size_t i = 0; i < pending_modules.size(); ++i) { 278 for (size_t i = 0; i < pending_modules.size(); ++i) {
276 scoped_ptr<PendingModule> pending(pending_modules[i]); 279 scoped_ptr<PendingModule> pending(pending_modules[i]);
277 pending_modules[i] = NULL; 280 pending_modules[i] = NULL;
278 if (AttemptToLoad(isolate, pending.Pass())) 281 if (AttemptToLoad(isolate, pending.Pass()))
279 keep_trying = true; 282 keep_trying = true;
280 } 283 }
281 } 284 }
282 } 285 }
283 286
284 } // namespace gin 287 } // namespace gin
OLDNEW
« no previous file with comments | « gin/modules/module_registry.h ('k') | gin/modules/module_registry_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698