OLD | NEW |
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 #ifndef MOJO_EMBEDDER_SIMPLE_PLATFORM_SUPPORT_H_ | 5 #ifndef MOJO_EDK_EMBEDDER_SIMPLE_PLATFORM_SUPPORT_H_ |
6 #define MOJO_EMBEDDER_SIMPLE_PLATFORM_SUPPORT_H_ | 6 #define MOJO_EDK_EMBEDDER_SIMPLE_PLATFORM_SUPPORT_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "mojo/embedder/platform_support.h" | 9 #include "mojo/edk/embedder/platform_support.h" |
10 #include "mojo/system/system_impl_export.h" | 10 #include "mojo/edk/system/system_impl_export.h" |
11 | 11 |
12 namespace mojo { | 12 namespace mojo { |
13 namespace embedder { | 13 namespace embedder { |
14 | 14 |
15 // A simple implementation of |PlatformSupport|, when sandboxing and | 15 // A simple implementation of |PlatformSupport|, when sandboxing and |
16 // multiprocess support are not issues (e.g., in most tests). Note: This class | 16 // multiprocess support are not issues (e.g., in most tests). Note: This class |
17 // has no state, and different instances of |SimplePlatformSupport| are mutually | 17 // has no state, and different instances of |SimplePlatformSupport| are mutually |
18 // compatible (i.e., you don't need to use a single instance of it everywhere -- | 18 // compatible (i.e., you don't need to use a single instance of it everywhere -- |
19 // you may simply create one whenever/wherever you need it). | 19 // you may simply create one whenever/wherever you need it). |
20 class MOJO_SYSTEM_IMPL_EXPORT SimplePlatformSupport : public PlatformSupport { | 20 class MOJO_SYSTEM_IMPL_EXPORT SimplePlatformSupport : public PlatformSupport { |
21 public: | 21 public: |
22 SimplePlatformSupport() {} | 22 SimplePlatformSupport() {} |
23 virtual ~SimplePlatformSupport() {} | 23 virtual ~SimplePlatformSupport() {} |
24 | 24 |
25 virtual PlatformSharedBuffer* CreateSharedBuffer(size_t num_bytes) override; | 25 virtual PlatformSharedBuffer* CreateSharedBuffer(size_t num_bytes) override; |
26 virtual PlatformSharedBuffer* CreateSharedBufferFromHandle( | 26 virtual PlatformSharedBuffer* CreateSharedBufferFromHandle( |
27 size_t num_bytes, | 27 size_t num_bytes, |
28 ScopedPlatformHandle platform_handle) override; | 28 ScopedPlatformHandle platform_handle) override; |
29 | 29 |
30 private: | 30 private: |
31 DISALLOW_COPY_AND_ASSIGN(SimplePlatformSupport); | 31 DISALLOW_COPY_AND_ASSIGN(SimplePlatformSupport); |
32 }; | 32 }; |
33 | 33 |
34 } // namespace embedder | 34 } // namespace embedder |
35 } // namespace mojo | 35 } // namespace mojo |
36 | 36 |
37 #endif // MOJO_EMBEDDER_SIMPLE_PLATFORM_SUPPORT_H_ | 37 #endif // MOJO_EDK_EMBEDDER_SIMPLE_PLATFORM_SUPPORT_H_ |
OLD | NEW |