| 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 #ifndef CHROME_SERVICE_SERVICE_PROCESS_H_ | 5 #ifndef CHROME_SERVICE_SERVICE_PROCESS_H_ |
| 6 #define CHROME_SERVICE_SERVICE_PROCESS_H_ | 6 #define CHROME_SERVICE_SERVICE_PROCESS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 12 #include "base/ref_counted.h" | 12 #include "base/ref_counted.h" |
| 13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
| 14 #include "base/threading/thread.h" | 14 #include "base/threading/thread.h" |
| 15 #include "base/waitable_event.h" | 15 #include "base/synchronization/waitable_event.h" |
| 16 #include "chrome/service/cloud_print/cloud_print_proxy.h" | 16 #include "chrome/service/cloud_print/cloud_print_proxy.h" |
| 17 #include "chrome/service/remoting/chromoting_host_manager.h" | 17 #include "chrome/service/remoting/chromoting_host_manager.h" |
| 18 | 18 |
| 19 class ServiceProcessPrefs; | 19 class ServiceProcessPrefs; |
| 20 class ServiceIPCServer; | 20 class ServiceIPCServer; |
| 21 | 21 |
| 22 namespace net { | 22 namespace net { |
| 23 class NetworkChangeNotifier; | 23 class NetworkChangeNotifier; |
| 24 } | 24 } |
| 25 | 25 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 #if defined(ENABLE_REMOTING) | 131 #if defined(ENABLE_REMOTING) |
| 132 scoped_refptr<remoting::ChromotingHostManager> remoting_host_manager_; | 132 scoped_refptr<remoting::ChromotingHostManager> remoting_host_manager_; |
| 133 #endif | 133 #endif |
| 134 | 134 |
| 135 DISALLOW_COPY_AND_ASSIGN(ServiceProcess); | 135 DISALLOW_COPY_AND_ASSIGN(ServiceProcess); |
| 136 }; | 136 }; |
| 137 | 137 |
| 138 extern ServiceProcess* g_service_process; | 138 extern ServiceProcess* g_service_process; |
| 139 | 139 |
| 140 #endif // CHROME_SERVICE_SERVICE_PROCESS_H_ | 140 #endif // CHROME_SERVICE_SERVICE_PROCESS_H_ |
| OLD | NEW |