| Index: content/browser/device_orientation/device_orientation_browsertest.cc
|
| diff --git a/content/browser/device_orientation/device_orientation_browsertest.cc b/content/browser/device_orientation/device_orientation_browsertest.cc
|
| index 074c5ce7f542b8ce8d73c2878623d3beb52a7272..d002a10dfccd72a3ab177033a2fc2b241e0177a6 100644
|
| --- a/content/browser/device_orientation/device_orientation_browsertest.cc
|
| +++ b/content/browser/device_orientation/device_orientation_browsertest.cc
|
| @@ -43,7 +43,7 @@ class MockProvider : public Provider {
|
| virtual ~MockProvider() {}
|
| };
|
|
|
| -class DeviceOrientationBrowserTest : public content::ContentBrowserTest {
|
| +class DeviceOrientationBrowserTest : public ContentBrowserTest {
|
| public:
|
| // From ContentBrowserTest.
|
| virtual void SetUpCommandLine(CommandLine* command_line) {
|
| @@ -65,9 +65,9 @@ IN_PROC_BROWSER_TEST_F(DeviceOrientationBrowserTest, BasicTest) {
|
| // The test page will register an event handler for orientation events,
|
| // expects to get an event with kTestOrientation orientation,
|
| // then removes the event handler and navigates to #pass.
|
| - GURL test_url = content::GetTestUrl(
|
| + GURL test_url = GetTestUrl(
|
| "device_orientation", "device_orientation_test.html");
|
| - content::NavigateToURLBlockUntilNavigationsComplete(shell(), test_url, 2);
|
| + NavigateToURLBlockUntilNavigationsComplete(shell(), test_url, 2);
|
|
|
| // Check that the page got the event it expected and that the provider
|
| // saw requests for adding and removing an observer.
|
|
|