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

Side by Side Diff: sandbox/src/target_services.h

Issue 9924010: Revert 129627 - Add a sandbox API for broker handle duplication (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « sandbox/src/sandbox_policy_base.cc ('k') | sandbox/src/target_services.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 SANDBOX_SRC_TARGET_SERVICES_H__ 5 #ifndef SANDBOX_SRC_TARGET_SERVICES_H__
6 #define SANDBOX_SRC_TARGET_SERVICES_H__ 6 #define SANDBOX_SRC_TARGET_SERVICES_H__
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "sandbox/src/sandbox.h" 9 #include "sandbox/src/sandbox.h"
10 #include "sandbox/src/win_utils.h" 10 #include "sandbox/src/win_utils.h"
11 11
(...skipping 27 matching lines...) Expand all
39 // Do NOT add a destructor to this class without changing the implementation of 39 // Do NOT add a destructor to this class without changing the implementation of
40 // the factory method. 40 // the factory method.
41 class TargetServicesBase : public TargetServices { 41 class TargetServicesBase : public TargetServices {
42 public: 42 public:
43 TargetServicesBase(); 43 TargetServicesBase();
44 44
45 // Public interface of TargetServices. 45 // Public interface of TargetServices.
46 virtual ResultCode Init(); 46 virtual ResultCode Init();
47 virtual void LowerToken(); 47 virtual void LowerToken();
48 virtual ProcessState* GetState(); 48 virtual ProcessState* GetState();
49 virtual ResultCode DuplicateHandle(HANDLE source_handle,
50 DWORD target_process_id,
51 HANDLE* target_handle,
52 DWORD desired_access,
53 DWORD options);
54 49
55 // Factory method. 50 // Factory method.
56 static TargetServicesBase* GetInstance(); 51 static TargetServicesBase* GetInstance();
57 52
58 // Sends a simple IPC Message that has a well-known answer. Returns true 53 // Sends a simple IPC Message that has a well-known answer. Returns true
59 // if the IPC was successful and false otherwise. There are 2 versions of 54 // if the IPC was successful and false otherwise. There are 2 versions of
60 // this test: 1 and 2. The first one send a simple message while the 55 // this test: 1 and 2. The first one send a simple message while the
61 // second one send a message with an in/out param. 56 // second one send a message with an in/out param.
62 bool TestIPCPing(int version); 57 bool TestIPCPing(int version);
63 58
64 private: 59 private:
65 ProcessState process_state_; 60 ProcessState process_state_;
66 DISALLOW_COPY_AND_ASSIGN(TargetServicesBase); 61 DISALLOW_COPY_AND_ASSIGN(TargetServicesBase);
67 }; 62 };
68 63
69 } // namespace sandbox 64 } // namespace sandbox
70 65
71 #endif // SANDBOX_SRC_TARGET_SERVICES_H__ 66 #endif // SANDBOX_SRC_TARGET_SERVICES_H__
OLDNEW
« no previous file with comments | « sandbox/src/sandbox_policy_base.cc ('k') | sandbox/src/target_services.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698