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

Side by Side Diff: components/nacl/renderer/plugin/plugin.h

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 // -*- c++ -*- 1 // -*- c++ -*-
2 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file. 4 // found in the LICENSE file.
5 5
6 // The portable representation of an instance and root scriptable object. 6 // The portable representation of an instance and root scriptable object.
7 // The PPAPI version of the plugin instantiates a subclass of this class. 7 // The PPAPI version of the plugin instantiates a subclass of this class.
8 8
9 #ifndef COMPONENTS_NACL_RENDERER_PLUGIN_PLUGIN_H_ 9 #ifndef COMPONENTS_NACL_RENDERER_PLUGIN_PLUGIN_H_
10 #define COMPONENTS_NACL_RENDERER_PLUGIN_PLUGIN_H_ 10 #define COMPONENTS_NACL_RENDERER_PLUGIN_PLUGIN_H_
11 11
12 #include <stdint.h>
12 #include <stdio.h> 13 #include <stdio.h>
13 14
14 #include <string> 15 #include <string>
15 16
17 #include "base/macros.h"
16 #include "components/nacl/renderer/plugin/nacl_subprocess.h" 18 #include "components/nacl/renderer/plugin/nacl_subprocess.h"
17 #include "components/nacl/renderer/plugin/pnacl_coordinator.h" 19 #include "components/nacl/renderer/plugin/pnacl_coordinator.h"
18 #include "components/nacl/renderer/plugin/service_runtime.h" 20 #include "components/nacl/renderer/plugin/service_runtime.h"
19 #include "components/nacl/renderer/plugin/utility.h" 21 #include "components/nacl/renderer/plugin/utility.h"
20 #include "components/nacl/renderer/ppb_nacl_private.h" 22 #include "components/nacl/renderer/ppb_nacl_private.h"
21 #include "native_client/src/include/nacl_macros.h" 23 #include "native_client/src/include/nacl_macros.h"
22 #include "native_client/src/include/nacl_scoped_ptr.h" 24 #include "native_client/src/include/nacl_scoped_ptr.h"
23 #include "ppapi/cpp/instance.h" 25 #include "ppapi/cpp/instance.h"
24 #include "ppapi/cpp/private/uma_private.h" 26 #include "ppapi/cpp/private/uma_private.h"
25 #include "ppapi/cpp/url_loader.h" 27 #include "ppapi/cpp/url_loader.h"
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 163
162 PP_NaClFileInfo nexe_file_info_; 164 PP_NaClFileInfo nexe_file_info_;
163 165
164 const PPB_NaCl_Private* nacl_interface_; 166 const PPB_NaCl_Private* nacl_interface_;
165 pp::UMAPrivate uma_interface_; 167 pp::UMAPrivate uma_interface_;
166 }; 168 };
167 169
168 } // namespace plugin 170 } // namespace plugin
169 171
170 #endif // COMPONENTS_NACL_RENDERER_PLUGIN_PLUGIN_H_ 172 #endif // COMPONENTS_NACL_RENDERER_PLUGIN_PLUGIN_H_
OLDNEW
« no previous file with comments | « components/nacl/renderer/plugin/nacl_subprocess.cc ('k') | components/nacl/renderer/plugin/plugin_error.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698