OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_FRAME_DLL_REDIRECTOR_H_ | 5 #ifndef CHROME_FRAME_DLL_REDIRECTOR_H_ |
6 #define CHROME_FRAME_DLL_REDIRECTOR_H_ | 6 #define CHROME_FRAME_DLL_REDIRECTOR_H_ |
7 | 7 |
8 #include <ObjBase.h> | 8 #include <ObjBase.h> |
9 #include <windows.h> | 9 #include <windows.h> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/memory/shared_memory.h" |
14 #include "base/memory/singleton.h" | 15 #include "base/memory/singleton.h" |
15 #include "base/shared_memory.h" | |
16 | 16 |
17 // Forward | 17 // Forward |
18 namespace ATL { | 18 namespace ATL { |
19 class CSecurityAttributes; | 19 class CSecurityAttributes; |
20 } | 20 } |
21 | 21 |
22 namespace base { | 22 namespace base { |
23 class Version; | 23 class Version; |
24 } | 24 } |
25 | 25 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 | 103 |
104 // Used for tests to override the name of the shared memory segment. | 104 // Used for tests to override the name of the shared memory segment. |
105 std::string shared_memory_name_; | 105 std::string shared_memory_name_; |
106 | 106 |
107 friend class ModuleUtilsTest; | 107 friend class ModuleUtilsTest; |
108 | 108 |
109 DISALLOW_COPY_AND_ASSIGN(DllRedirector); | 109 DISALLOW_COPY_AND_ASSIGN(DllRedirector); |
110 }; | 110 }; |
111 | 111 |
112 #endif // CHROME_FRAME_DLL_REDIRECTOR_H_ | 112 #endif // CHROME_FRAME_DLL_REDIRECTOR_H_ |
OLD | NEW |