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

Side by Side Diff: chrome/service/service_process.cc

Issue 2840036: Moving Encoder and Decoder to remoting/base (Closed)
Patch Set: fix DEPS Created 10 years, 5 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
« no previous file with comments | « chrome/service/DEPS ('k') | remoting/base/capture_data.h » ('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) 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 #include "chrome/service/service_process.h" 5 #include "chrome/service/service_process.h"
6 6
7 #include "base/stl_util-inl.h" 7 #include "base/stl_util-inl.h"
8 #include "chrome/service/cloud_print/cloud_print_proxy.h" 8 #include "chrome/service/cloud_print/cloud_print_proxy.h"
9 #include "net/base/network_change_notifier.h" 9 #include "net/base/network_change_notifier.h"
10 10
11 #if defined(ENABLE_REMOTING) 11 #if defined(ENABLE_REMOTING)
12 #include "remoting/base/encoder_verbatim.h"
12 #include "remoting/host/chromoting_host.h" 13 #include "remoting/host/chromoting_host.h"
13 #include "remoting/host/chromoting_host_context.h" 14 #include "remoting/host/chromoting_host_context.h"
14 #include "remoting/host/encoder_verbatim.h"
15 #include "remoting/host/host_config.h" 15 #include "remoting/host/host_config.h"
16 16
17 #if defined(OS_WIN) 17 #if defined(OS_WIN)
18 #include "remoting/host/capturer_gdi.h" 18 #include "remoting/host/capturer_gdi.h"
19 #include "remoting/host/event_executor_win.h" 19 #include "remoting/host/event_executor_win.h"
20 #elif defined(OS_LINUX) 20 #elif defined(OS_LINUX)
21 #include "remoting/host/capturer_linux.h" 21 #include "remoting/host/capturer_linux.h"
22 #include "remoting/host/event_executor_linux.h" 22 #include "remoting/host/event_executor_linux.h"
23 #elif defined(OS_MACOSX) 23 #elif defined(OS_MACOSX)
24 #include "remoting/host/capturer_mac.h" 24 #include "remoting/host/capturer_mac.h"
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 return new remoting::ChromotingHost(context, config, capturer.release(), 90 return new remoting::ChromotingHost(context, config, capturer.release(),
91 encoder.release(), executor.release()); 91 encoder.release(), executor.release());
92 } 92 }
93 #endif 93 #endif
94 94
95 ServiceProcess::~ServiceProcess() { 95 ServiceProcess::~ServiceProcess() {
96 Teardown(); 96 Teardown();
97 DCHECK(cloud_print_proxy_list_.size() == 0); 97 DCHECK(cloud_print_proxy_list_.size() == 0);
98 g_service_process = NULL; 98 g_service_process = NULL;
99 } 99 }
100
OLDNEW
« no previous file with comments | « chrome/service/DEPS ('k') | remoting/base/capture_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698