OLD | NEW |
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_THREAD_H_ | 5 #ifndef CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ |
6 #define CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ | 6 #define CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ |
7 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 #include <string> | 9 #include <string> |
11 | 10 |
12 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
13 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
14 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
15 #include "base/process.h" | 14 #include "base/process.h" |
16 #include "base/scoped_native_library.h" | 15 #include "base/scoped_native_library.h" |
17 #include "build/build_config.h" | 16 #include "build/build_config.h" |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 | 115 |
117 #if defined(OS_WIN) | 116 #if defined(OS_WIN) |
118 // Caches the handle to the peer process if this is a broker. | 117 // Caches the handle to the peer process if this is a broker. |
119 base::win::ScopedHandle peer_handle_; | 118 base::win::ScopedHandle peer_handle_; |
120 #endif | 119 #endif |
121 | 120 |
122 DISALLOW_IMPLICIT_CONSTRUCTORS(PpapiThread); | 121 DISALLOW_IMPLICIT_CONSTRUCTORS(PpapiThread); |
123 }; | 122 }; |
124 | 123 |
125 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ | 124 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ |
OLD | NEW |