| OLD | NEW |
| 1 // Copyright (c) 2010 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 // @file | 5 // @file |
| 6 // ICeeeBroker implementation. | 6 // ICeeeBroker implementation. |
| 7 | 7 |
| 8 #ifndef CEEE_IE_BROKER_BROKER_H_ | 8 #ifndef CEEE_IE_BROKER_BROKER_H_ |
| 9 #define CEEE_IE_BROKER_BROKER_H_ | 9 #define CEEE_IE_BROKER_BROKER_H_ |
| 10 | 10 |
| 11 #include <atlbase.h> | 11 #include <atlbase.h> |
| 12 #include <atlcom.h> | 12 #include <atlcom.h> |
| 13 | 13 |
| 14 #include "base/win/rgs_helper.h" | |
| 15 #include "ceee/ie/broker/resource.h" | 14 #include "ceee/ie/broker/resource.h" |
| 15 #include "ceee/ie/common/rgs_helper.h" |
| 16 | 16 |
| 17 #include "broker_lib.h" // NOLINT | 17 #include "broker_lib.h" // NOLINT |
| 18 | 18 |
| 19 class ExecutorsManager; | 19 class ExecutorsManager; |
| 20 class ApiDispatcher; | 20 class ApiDispatcher; |
| 21 | 21 |
| 22 // The CEEE user Broker is a COM object exposed from an executable server | 22 // The CEEE user Broker is a COM object exposed from an executable server |
| 23 // so that we can call it to execute code in destination threads of other | 23 // so that we can call it to execute code in destination threads of other |
| 24 // processes, even if they run at a hight integrity level. | 24 // processes, even if they run at a hight integrity level. |
| 25 | 25 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 void OnReleaseConnection(bool last_unlock, bool last_unlock_releases); | 70 void OnReleaseConnection(bool last_unlock, bool last_unlock_releases); |
| 71 | 71 |
| 72 protected: | 72 protected: |
| 73 // A pointer to single instance objects, or seams set for unittests. | 73 // A pointer to single instance objects, or seams set for unittests. |
| 74 // TODO(mad@chromium.org): We should now use ExecutorsManager::test_instance_. | 74 // TODO(mad@chromium.org): We should now use ExecutorsManager::test_instance_. |
| 75 ExecutorsManager * executors_manager_; | 75 ExecutorsManager * executors_manager_; |
| 76 ApiDispatcher* api_dispatcher_; | 76 ApiDispatcher* api_dispatcher_; |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 #endif // CEEE_IE_BROKER_BROKER_H_ | 79 #endif // CEEE_IE_BROKER_BROKER_H_ |
| OLD | NEW |