Index: chrome/browser/media_gallery/media_device_notifications_linux_unittest.cc |
=================================================================== |
--- chrome/browser/media_gallery/media_device_notifications_linux_unittest.cc (revision 131949) |
+++ chrome/browser/media_gallery/media_device_notifications_linux_unittest.cc (working copy) |
@@ -4,7 +4,7 @@ |
// MediaDeviceNotificationsLinux unit tests. |
-#include "content/browser/media_device_notifications_linux.h" |
+#include "chrome/browser/media_gallery/media_device_notifications_linux.h" |
#include <mntent.h> |
#include <stdio.h> |
@@ -21,7 +21,7 @@ |
#include "content/browser/browser_thread_impl.h" |
jam
2012/04/12 16:20:38
you're not going to be able to make this include a
Lei Zhang
2012/04/12 20:38:06
Done.
|
#include "testing/gtest/include/gtest/gtest.h" |
-namespace content { |
+namespace chrome { |
namespace { |
@@ -95,7 +95,7 @@ |
MediaDeviceNotificationsLinuxTest() |
: message_loop_(MessageLoop::TYPE_IO), |
- file_thread_(BrowserThread::FILE, &message_loop_) { |
+ file_thread_(content::BrowserThread::FILE, &message_loop_) { |
} |
virtual ~MediaDeviceNotificationsLinuxTest() {} |
@@ -217,7 +217,7 @@ |
// The message loop and file thread to run tests on. |
MessageLoop message_loop_; |
- BrowserThreadImpl file_thread_; |
+ content::BrowserThreadImpl file_thread_; |
// SystemMonitor and DevicesChangedObserver to hook together to test. |
base::SystemMonitor system_monitor_; |
@@ -393,4 +393,4 @@ |
} // namespace |
-} // namespace content |
+} // namespace chrome |