summaryrefslogtreecommitdiffstats
path: root/remoting/host/chromoting_host.cc
diff options
context:
space:
mode:
authorkxing@chromium.org <kxing@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-23 01:36:10 +0000
committerkxing@chromium.org <kxing@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-23 01:36:10 +0000
commit386098336aa778f82d5a079b9371a1c63bd46d94 (patch)
tree3f238db944ed2ac50f2224b62feb5a36193123fd /remoting/host/chromoting_host.cc
parente7e5bc86181faa3076671af080f809944594b60d (diff)
downloadchromium_src-386098336aa778f82d5a079b9371a1c63bd46d94.zip
chromium_src-386098336aa778f82d5a079b9371a1c63bd46d94.tar.gz
chromium_src-386098336aa778f82d5a079b9371a1c63bd46d94.tar.bz2
Moved the video encoders/decoders to the codec directory.
Review URL: https://chromiumcodereview.appspot.com/10877014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152912 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/chromoting_host.cc')
-rw-r--r--remoting/host/chromoting_host.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc
index 4ef9de1..d70085fb 100644
--- a/remoting/host/chromoting_host.cc
+++ b/remoting/host/chromoting_host.cc
@@ -10,12 +10,12 @@
#include "base/message_loop_proxy.h"
#include "build/build_config.h"
#include "remoting/base/constants.h"
-#include "remoting/base/encoder.h"
-#include "remoting/base/encoder_row_based.h"
-#include "remoting/base/encoder_vp8.h"
#include "remoting/codec/audio_encoder.h"
#include "remoting/codec/audio_encoder_speex.h"
#include "remoting/codec/audio_encoder_verbatim.h"
+#include "remoting/codec/video_encoder.h"
+#include "remoting/codec/video_encoder_row_based.h"
+#include "remoting/codec/video_encoder_vp8.h"
#include "remoting/host/audio_scheduler.h"
#include "remoting/host/chromoting_host_context.h"
#include "remoting/host/desktop_environment.h"