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

Side by Side Diff: content/ppapi_plugin/ppapi_blink_platform_impl.h

Issue 1544273002: Switch to standard integer types in content/. (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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ 5 #ifndef CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_
6 #define CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ 6 #define CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include <stddef.h>
9
10 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "build/build_config.h"
10 #include "content/child/blink_platform_impl.h" 13 #include "content/child/blink_platform_impl.h"
11 14
12 namespace content { 15 namespace content {
13 16
14 class PpapiBlinkPlatformImpl : public BlinkPlatformImpl { 17 class PpapiBlinkPlatformImpl : public BlinkPlatformImpl {
15 public: 18 public:
16 PpapiBlinkPlatformImpl(); 19 PpapiBlinkPlatformImpl();
17 ~PpapiBlinkPlatformImpl() override; 20 ~PpapiBlinkPlatformImpl() override;
18 21
19 // Shutdown must be called just prior to shutting down blink. 22 // Shutdown must be called just prior to shutting down blink.
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 class SandboxSupport; 58 class SandboxSupport;
56 scoped_ptr<SandboxSupport> sandbox_support_; 59 scoped_ptr<SandboxSupport> sandbox_support_;
57 #endif 60 #endif
58 61
59 DISALLOW_COPY_AND_ASSIGN(PpapiBlinkPlatformImpl); 62 DISALLOW_COPY_AND_ASSIGN(PpapiBlinkPlatformImpl);
60 }; 63 };
61 64
62 } // namespace content 65 } // namespace content
63 66
64 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ 67 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_
OLDNEW
« no previous file with comments | « content/ppapi_plugin/plugin_process_dispatcher.h ('k') | content/ppapi_plugin/ppapi_blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698