| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_INTEGRATION_BROWSERTEST_H_ | 5 #ifndef CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_INTEGRATION_BROWSERTEST_H_ |
| 6 #define CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_INTEGRATION_BROWSERTEST_H_ | 6 #define CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_INTEGRATION_BROWSERTEST_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/debug/stack_trace.h" | 11 #include "base/debug/stack_trace.h" |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "chrome/browser/ui/toolbar/media_router_action.h" | 13 #include "chrome/browser/ui/toolbar/media_router_action.h" |
| 14 #include "chrome/test/media_router/media_router_base_browsertest.h" | 14 #include "chrome/test/media_router/media_router_base_browsertest.h" |
| 15 #include "content/public/test/browser_test_utils.h" | 15 #include "content/public/test/browser_test_utils.h" |
| 16 #include "content/public/test/test_navigation_observer.h" | 16 #include "content/public/test/test_navigation_observer.h" |
| 17 | 17 |
| 18 | 18 |
| 19 namespace media_router { | 19 namespace media_router { |
| 20 | 20 |
| 21 class MediaRouter; | |
| 22 | |
| 23 class MediaRouterIntegrationBrowserTest : public MediaRouterBaseBrowserTest { | 21 class MediaRouterIntegrationBrowserTest : public MediaRouterBaseBrowserTest { |
| 24 public: | 22 public: |
| 25 MediaRouterIntegrationBrowserTest(); | 23 MediaRouterIntegrationBrowserTest(); |
| 26 ~MediaRouterIntegrationBrowserTest() override; | 24 ~MediaRouterIntegrationBrowserTest() override; |
| 27 | 25 |
| 28 protected: | 26 protected: |
| 29 // InProcessBrowserTest Overrides | 27 // InProcessBrowserTest Overrides |
| 30 void TearDownOnMainThread() override; | 28 void TearDownOnMainThread() override; |
| 31 | 29 |
| 32 // MediaRouterBaseBrowserTest Overrides | 30 // MediaRouterBaseBrowserTest Overrides |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 | 137 |
| 140 std::unique_ptr<content::TestNavigationObserver> test_navigation_observer_; | 138 std::unique_ptr<content::TestNavigationObserver> test_navigation_observer_; |
| 141 | 139 |
| 142 // Fields | 140 // Fields |
| 143 std::string receiver_; | 141 std::string receiver_; |
| 144 }; | 142 }; |
| 145 | 143 |
| 146 } // namespace media_router | 144 } // namespace media_router |
| 147 | 145 |
| 148 #endif // CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_INTEGRATION_BROWSERTEST_H_ | 146 #endif // CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_INTEGRATION_BROWSERTEST_H_ |
| OLD | NEW |