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_BASE_BROWSERTEST_H_ | 5 #ifndef CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_BASE_BROWSERTEST_H_ |
6 #define CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_BASE_BROWSERTEST_H_ | 6 #define CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_BASE_BROWSERTEST_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/macros.h" |
11 #include "base/synchronization/waitable_event.h" | 12 #include "base/synchronization/waitable_event.h" |
12 #include "base/timer/timer.h" | 13 #include "base/timer/timer.h" |
13 #include "chrome/browser/extensions/extension_apitest.h" | 14 #include "chrome/browser/extensions/extension_apitest.h" |
14 #include "extensions/browser/process_manager_observer.h" | 15 #include "extensions/browser/process_manager_observer.h" |
15 #include "extensions/common/feature_switch.h" | 16 #include "extensions/common/feature_switch.h" |
16 | 17 |
17 namespace media_router { | 18 namespace media_router { |
18 | 19 |
19 class MediaRouter; | 20 class MediaRouter; |
20 | 21 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 bool extension_host_created_; | 77 bool extension_host_created_; |
77 | 78 |
78 private: | 79 private: |
79 extensions::FeatureSwitch::ScopedOverride feature_override_; | 80 extensions::FeatureSwitch::ScopedOverride feature_override_; |
80 DISALLOW_COPY_AND_ASSIGN(MediaRouterBaseBrowserTest); | 81 DISALLOW_COPY_AND_ASSIGN(MediaRouterBaseBrowserTest); |
81 }; | 82 }; |
82 | 83 |
83 } // namespace media_router | 84 } // namespace media_router |
84 | 85 |
85 #endif // CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_BASE_BROWSERTEST_H_ | 86 #endif // CHROME_TEST_MEDIA_ROUTER_MEDIA_ROUTER_BASE_BROWSERTEST_H_ |
OLD | NEW |