diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-28 15:21:24 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-28 15:21:24 +0000 |
commit | 5d7eb86c365a47a9c3527784cb3831530fd9f191 (patch) | |
tree | b0f6b10b4d6436964a92c9da74d54019fec3e08c /remoting/codec | |
parent | 66e96c418e3f2476422c538d65b449cd8155d266 (diff) | |
download | chromium_src-5d7eb86c365a47a9c3527784cb3831530fd9f191.zip chromium_src-5d7eb86c365a47a9c3527784cb3831530fd9f191.tar.gz chromium_src-5d7eb86c365a47a9c3527784cb3831530fd9f191.tar.bz2 |
Use a direct include of time headers in ppapi/, printing/, remoting/.
BUG=254986
TEST=none
TBR=ben@chromium.org
Review URL: https://codereview.chromium.org/18052008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209151 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/codec')
-rw-r--r-- | remoting/codec/audio_decoder_opus.cc | 2 | ||||
-rw-r--r-- | remoting/codec/audio_encoder_opus.cc | 2 | ||||
-rw-r--r-- | remoting/codec/video_encoder_verbatim.h | 2 | ||||
-rw-r--r-- | remoting/codec/video_encoder_vp8.cc | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/remoting/codec/audio_decoder_opus.cc b/remoting/codec/audio_decoder_opus.cc index abd3456..3d8fabf 100644 --- a/remoting/codec/audio_decoder_opus.cc +++ b/remoting/codec/audio_decoder_opus.cc @@ -6,7 +6,7 @@ #include "base/logging.h" #include "base/stl_util.h" -#include "base/time.h" +#include "base/time/time.h" #include "remoting/proto/audio.pb.h" #include "third_party/opus/src/include/opus.h" diff --git a/remoting/codec/audio_encoder_opus.cc b/remoting/codec/audio_encoder_opus.cc index 2efcf90..51b66f0 100644 --- a/remoting/codec/audio_encoder_opus.cc +++ b/remoting/codec/audio_encoder_opus.cc @@ -6,7 +6,7 @@ #include "base/bind.h" #include "base/logging.h" -#include "base/time.h" +#include "base/time/time.h" #include "media/base/audio_bus.h" #include "media/base/multi_channel_resampler.h" #include "third_party/opus/src/include/opus.h" diff --git a/remoting/codec/video_encoder_verbatim.h b/remoting/codec/video_encoder_verbatim.h index bf8e901..f2078fc 100644 --- a/remoting/codec/video_encoder_verbatim.h +++ b/remoting/codec/video_encoder_verbatim.h @@ -5,7 +5,7 @@ #ifndef REMOTING_CODEC_VIDEO_ENCODER_VERBATIM_H_ #define REMOTING_CODEC_VIDEO_ENCODER_VERBATIM_H_ -#include "base/time.h" +#include "base/time/time.h" #include "remoting/codec/video_encoder.h" #include "remoting/proto/video.pb.h" #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" diff --git a/remoting/codec/video_encoder_vp8.cc b/remoting/codec/video_encoder_vp8.cc index 21712aa..d9c9e88 100644 --- a/remoting/codec/video_encoder_vp8.cc +++ b/remoting/codec/video_encoder_vp8.cc @@ -6,7 +6,7 @@ #include "base/logging.h" #include "base/sys_info.h" -#include "base/time.h" +#include "base/time/time.h" #include "media/base/yuv_convert.h" #include "remoting/base/util.h" #include "remoting/proto/video.pb.h" |