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

Side by Side Diff: components/nacl/renderer/ppb_nacl_private_impl.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
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 "components/nacl/renderer/ppb_nacl_private_impl.h" 5 #include "components/nacl/renderer/ppb_nacl_private_impl.h"
6 6
7 #include <stddef.h>
8 #include <stdint.h>
9
7 #include <numeric> 10 #include <numeric>
8 #include <string> 11 #include <string>
9 #include <vector> 12 #include <vector>
10 13
11 #include "base/bind.h" 14 #include "base/bind.h"
12 #include "base/bind_helpers.h" 15 #include "base/bind_helpers.h"
13 #include "base/command_line.h" 16 #include "base/command_line.h"
14 #include "base/containers/scoped_ptr_hash_map.h" 17 #include "base/containers/scoped_ptr_hash_map.h"
15 #include "base/cpu.h" 18 #include "base/cpu.h"
16 #include "base/files/file.h" 19 #include "base/files/file.h"
17 #include "base/json/json_reader.h" 20 #include "base/json/json_reader.h"
18 #include "base/lazy_instance.h" 21 #include "base/lazy_instance.h"
19 #include "base/location.h" 22 #include "base/location.h"
20 #include "base/logging.h" 23 #include "base/logging.h"
24 #include "base/macros.h"
21 #include "base/rand_util.h" 25 #include "base/rand_util.h"
22 #include "base/single_thread_task_runner.h" 26 #include "base/single_thread_task_runner.h"
23 #include "base/strings/string_split.h" 27 #include "base/strings/string_split.h"
24 #include "base/strings/string_util.h" 28 #include "base/strings/string_util.h"
25 #include "base/thread_task_runner_handle.h" 29 #include "base/thread_task_runner_handle.h"
30 #include "build/build_config.h"
26 #include "components/nacl/common/nacl_host_messages.h" 31 #include "components/nacl/common/nacl_host_messages.h"
27 #include "components/nacl/common/nacl_messages.h" 32 #include "components/nacl/common/nacl_messages.h"
28 #include "components/nacl/common/nacl_nonsfi_util.h" 33 #include "components/nacl/common/nacl_nonsfi_util.h"
29 #include "components/nacl/common/nacl_switches.h" 34 #include "components/nacl/common/nacl_switches.h"
30 #include "components/nacl/common/nacl_types.h" 35 #include "components/nacl/common/nacl_types.h"
31 #include "components/nacl/renderer/file_downloader.h" 36 #include "components/nacl/renderer/file_downloader.h"
32 #include "components/nacl/renderer/histogram.h" 37 #include "components/nacl/renderer/histogram.h"
33 #include "components/nacl/renderer/json_manifest.h" 38 #include "components/nacl/renderer/json_manifest.h"
34 #include "components/nacl/renderer/manifest_downloader.h" 39 #include "components/nacl/renderer/manifest_downloader.h"
35 #include "components/nacl/renderer/manifest_service_channel.h" 40 #include "components/nacl/renderer/manifest_service_channel.h"
(...skipping 1686 matching lines...) Expand 10 before | Expand all | Expand 10 after
1722 &StreamPexe 1727 &StreamPexe
1723 }; 1728 };
1724 1729
1725 } // namespace 1730 } // namespace
1726 1731
1727 const PPB_NaCl_Private* GetNaClPrivateInterface() { 1732 const PPB_NaCl_Private* GetNaClPrivateInterface() {
1728 return &nacl_interface; 1733 return &nacl_interface;
1729 } 1734 }
1730 1735
1731 } // namespace nacl 1736 } // namespace nacl
OLDNEW
« no previous file with comments | « components/nacl/renderer/pnacl_translation_resource_host.h ('k') | components/nacl/renderer/progress_event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698