diff options
author | tfarina <tfarina@chromium.org> | 2015-02-26 06:44:07 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-26 14:45:12 +0000 |
commit | 1e24f7e3ada2673de16a60723ff7118c05fbad7d (patch) | |
tree | d0e0aefad7af73bb3ed322efe87f08ca6e6daa8c | |
parent | c2d96fa87b653355fc8335c0accecff8852cae5d (diff) | |
download | chromium_src-1e24f7e3ada2673de16a60723ff7118c05fbad7d.zip chromium_src-1e24f7e3ada2673de16a60723ff7118c05fbad7d.tar.gz chromium_src-1e24f7e3ada2673de16a60723ff7118c05fbad7d.tar.bz2 |
Cleanup: Fix some content includes that were not using full qualified paths.
These entries were found using a modified version of Eric's
fix-includes.py script found attached in
https://code.google.com/p/chromium/issues/detail?id=435361#c4.
BUG=435361
TEST=content_unittests
R=avi@chromium.org
Review URL: https://codereview.chromium.org/952323002
Cr-Commit-Position: refs/heads/master@{#318232}
7 files changed, 8 insertions, 9 deletions
diff --git a/content/browser/device_sensors/data_fetcher_shared_memory_default.cc b/content/browser/device_sensors/data_fetcher_shared_memory_default.cc index e1100b4e..e97993f 100644 --- a/content/browser/device_sensors/data_fetcher_shared_memory_default.cc +++ b/content/browser/device_sensors/data_fetcher_shared_memory_default.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "data_fetcher_shared_memory.h" +#include "content/browser/device_sensors/data_fetcher_shared_memory.h" #include "base/logging.h" #include "base/metrics/histogram.h" diff --git a/content/browser/device_sensors/data_fetcher_shared_memory_mac.cc b/content/browser/device_sensors/data_fetcher_shared_memory_mac.cc index b9538f2..4a1644ff 100644 --- a/content/browser/device_sensors/data_fetcher_shared_memory_mac.cc +++ b/content/browser/device_sensors/data_fetcher_shared_memory_mac.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "data_fetcher_shared_memory.h" +#include "content/browser/device_sensors/data_fetcher_shared_memory.h" #include "base/logging.h" #include "base/metrics/histogram.h" diff --git a/content/browser/device_sensors/data_fetcher_shared_memory_win.cc b/content/browser/device_sensors/data_fetcher_shared_memory_win.cc index c5d24fc..77c962e 100644 --- a/content/browser/device_sensors/data_fetcher_shared_memory_win.cc +++ b/content/browser/device_sensors/data_fetcher_shared_memory_win.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "data_fetcher_shared_memory.h" +#include "content/browser/device_sensors/data_fetcher_shared_memory.h" #include <GuidDef.h> #include <InitGuid.h> diff --git a/content/browser/fileapi/mock_url_request_delegate.cc b/content/browser/fileapi/mock_url_request_delegate.cc index 45d4ae3..40a975a 100644 --- a/content/browser/fileapi/mock_url_request_delegate.cc +++ b/content/browser/fileapi/mock_url_request_delegate.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "mock_url_request_delegate.h" +#include "content/browser/fileapi/mock_url_request_delegate.h" #include "base/profiler/scoped_tracker.h" #include "base/run_loop.h" diff --git a/content/renderer/battery_status/battery_status_dispatcher_unittest.cc b/content/renderer/battery_status/battery_status_dispatcher_unittest.cc index 5f0d2e8..7e6068e 100644 --- a/content/renderer/battery_status/battery_status_dispatcher_unittest.cc +++ b/content/renderer/battery_status/battery_status_dispatcher_unittest.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "battery_status_dispatcher.h" +#include "content/renderer/battery_status/battery_status_dispatcher.h" #include "content/public/test/mock_render_thread.h" #include "content/public/test/test_utils.h" diff --git a/content/renderer/screen_orientation/screen_orientation_dispatcher_unittest.cc b/content/renderer/screen_orientation/screen_orientation_dispatcher_unittest.cc index 355c7f6..afaef3a 100644 --- a/content/renderer/screen_orientation/screen_orientation_dispatcher_unittest.cc +++ b/content/renderer/screen_orientation/screen_orientation_dispatcher_unittest.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "screen_orientation_dispatcher.h" +#include "content/renderer/screen_orientation/screen_orientation_dispatcher.h" #include <list> @@ -23,8 +23,7 @@ namespace content { // callback is resolved, it will be killed so we use the // LockOrientationResultHolder to know in which state the callback object is at // any time. -class MockLockOrientationCallback : - public blink::WebLockOrientationCallback { +class MockLockOrientationCallback : public blink::WebLockOrientationCallback { public: struct LockOrientationResultHolder { LockOrientationResultHolder() diff --git a/content/renderer/shared_memory_seqlock_reader.cc b/content/renderer/shared_memory_seqlock_reader.cc index 5cf9347..2727aa5 100644 --- a/content/renderer/shared_memory_seqlock_reader.cc +++ b/content/renderer/shared_memory_seqlock_reader.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "shared_memory_seqlock_reader.h" +#include "content/renderer/shared_memory_seqlock_reader.h" namespace content { namespace internal { |