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 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
| 11 #include "base/scoped_ptr.h" |
11 #include "base/thread.h" | 12 #include "base/thread.h" |
12 | 13 |
13 class CloudPrintProxy; | 14 class CloudPrintProxy; |
14 class JsonPrefStore; | 15 class JsonPrefStore; |
15 namespace net { | 16 namespace net { |
16 class NetworkChangeNotifier; | 17 class NetworkChangeNotifier; |
17 } | 18 } |
18 | 19 |
19 namespace remoting { | 20 namespace remoting { |
20 class ChromotingHost; | 21 class ChromotingHost; |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 scoped_ptr<base::Thread> file_thread_; | 67 scoped_ptr<base::Thread> file_thread_; |
67 std::vector<CloudPrintProxy*> cloud_print_proxy_list_; | 68 std::vector<CloudPrintProxy*> cloud_print_proxy_list_; |
68 | 69 |
69 DISALLOW_COPY_AND_ASSIGN(ServiceProcess); | 70 DISALLOW_COPY_AND_ASSIGN(ServiceProcess); |
70 }; | 71 }; |
71 | 72 |
72 extern ServiceProcess* g_service_process; | 73 extern ServiceProcess* g_service_process; |
73 | 74 |
74 #endif // CHROME_SERVICE_SERVICE_PROCESS_H_ | 75 #endif // CHROME_SERVICE_SERVICE_PROCESS_H_ |
75 | 76 |
OLD | NEW |