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