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

Side by Side Diff: components/nacl/renderer/json_manifest.cc

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn 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 | « components/nacl/renderer/histogram.h ('k') | components/nacl/renderer/manifest_downloader.h » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/nacl/renderer/json_manifest.h" 5 #include "components/nacl/renderer/json_manifest.h"
6 6
7 #include <stddef.h>
8 #include <stdint.h>
9
7 #include <set> 10 #include <set>
8 11
9 #include "base/json/json_reader.h" 12 #include "base/json/json_reader.h"
10 #include "base/logging.h" 13 #include "base/logging.h"
11 #include "base/macros.h" 14 #include "base/macros.h"
12 #include "components/nacl/common/nacl_types.h" 15 #include "components/nacl/common/nacl_types.h"
13 #include "components/nacl/renderer/nexe_load_manager.h" 16 #include "components/nacl/renderer/nexe_load_manager.h"
14 #include "url/gurl.h" 17 #include "url/gurl.h"
15 18
16 namespace nacl { 19 namespace nacl {
(...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 kUrlKey + "'s value is not a string."; 702 kUrlKey + "'s value is not a string.";
700 return false; 703 return false;
701 } 704 }
702 pnacl_options->translate = PP_FALSE; 705 pnacl_options->translate = PP_FALSE;
703 } 706 }
704 707
705 return true; 708 return true;
706 } 709 }
707 710
708 } // namespace nacl 711 } // namespace nacl
OLDNEW
« no previous file with comments | « components/nacl/renderer/histogram.h ('k') | components/nacl/renderer/manifest_downloader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698