Rename webrtc/base -> webrtc/rtc_base

NOPRESUBMIT=True # cpplint errors that aren't caused by this CL.
NOTRY=True
NOTREECHECKS=True
TBR=kwiberg@webrtc.org, kjellander@webrtc.org

Bug: webrtc:7634
Change-Id: I3cca0fbaa807b563c95979cccd6d1bec32055f36
Reviewed-on: https://chromium-review.googlesource.com/562156
Commit-Queue: Edward Lemur <ehmaldonado@webrtc.org>
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#18919}
This commit is contained in:
Edward Lemur
2017-07-06 19:44:34 +02:00
committed by Commit Bot
parent ea39dfa770
commit c20978e581
1573 changed files with 3393 additions and 3401 deletions

View File

@ -13,7 +13,7 @@
#include <algorithm>
#include <limits>
#include "webrtc/base/checks.h"
#include "webrtc/rtc_base/checks.h"
namespace webrtc {
namespace {

View File

@ -14,7 +14,7 @@
#include <cmath>
#include <vector>
#include "webrtc/base/optional.h"
#include "webrtc/rtc_base/optional.h"
namespace webrtc {

View File

@ -13,8 +13,8 @@
#include <complex>
#include "webrtc/base/checks.h"
#include "webrtc/modules/audio_processing/beamformer/matrix.h"
#include "webrtc/rtc_base/checks.h"
namespace webrtc {

View File

@ -16,8 +16,8 @@
#include <string>
#include <vector>
#include "webrtc/base/checks.h"
#include "webrtc/base/constructormagic.h"
#include "webrtc/rtc_base/checks.h"
#include "webrtc/rtc_base/constructormagic.h"
namespace {

View File

@ -17,9 +17,9 @@
#include <numeric>
#include <vector>
#include "webrtc/base/arraysize.h"
#include "webrtc/common_audio/window_generator.h"
#include "webrtc/modules/audio_processing/beamformer/covariance_matrix_generator.h"
#include "webrtc/rtc_base/arraysize.h"
namespace webrtc {
namespace {

View File

@ -11,12 +11,12 @@
#include <vector>
#include "gflags/gflags.h"
#include "webrtc/base/checks.h"
#include "webrtc/base/format_macros.h"
#include "webrtc/common_audio/channel_buffer.h"
#include "webrtc/common_audio/wav_file.h"
#include "webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.h"
#include "webrtc/modules/audio_processing/test/test_utils.h"
#include "webrtc/rtc_base/checks.h"
#include "webrtc/rtc_base/format_macros.h"
DEFINE_string(i, "", "The name of the input file to read from.");
DEFINE_string(o, "out.wav", "Name of the output file to write to.");

View File

@ -15,10 +15,10 @@
#include <math.h>
#include "webrtc/base/array_view.h"
#include "webrtc/modules/audio_processing/audio_buffer.h"
#include "webrtc/modules/audio_processing/test/audio_buffer_tools.h"
#include "webrtc/modules/audio_processing/test/bitexactness_tools.h"
#include "webrtc/rtc_base/array_view.h"
#include "webrtc/test/gtest.h"
namespace webrtc {