| Index: ash/test/test_shell_delegate.cc
|
| diff --git a/ash/test/test_shell_delegate.cc b/ash/test/test_shell_delegate.cc
|
| index 39dd23ef9481c9dab09e49d1e4d52a996df84de6..3f558922a0ae0f72b4687308f4a161db08d1ce97 100644
|
| --- a/ash/test/test_shell_delegate.cc
|
| +++ b/ash/test/test_shell_delegate.cc
|
| @@ -52,14 +52,9 @@ class ShelfInitializer : public ShellObserver {
|
| DISALLOW_COPY_AND_ASSIGN(ShelfInitializer);
|
| };
|
|
|
| -TestShellDelegate::TestShellDelegate()
|
| - : num_exit_requests_(0),
|
| - multi_profiles_enabled_(false),
|
| - force_maximize_on_first_run_(false),
|
| - touchscreen_enabled_in_local_pref_(true),
|
| - active_user_pref_service_(nullptr) {}
|
| +TestShellDelegate::TestShellDelegate() = default;
|
|
|
| -TestShellDelegate::~TestShellDelegate() {}
|
| +TestShellDelegate::~TestShellDelegate() = default;
|
|
|
| ::service_manager::Connector* TestShellDelegate::GetShellConnector() const {
|
| return nullptr;
|
| @@ -159,5 +154,9 @@ void TestShellDelegate::SetTouchscreenEnabledInPrefs(bool enabled,
|
|
|
| void TestShellDelegate::UpdateTouchscreenStatusFromPrefs() {}
|
|
|
| +void TestShellDelegate::SuspendMediaSessions() {
|
| + media_sessions_suspended_ = true;
|
| +}
|
| +
|
| } // namespace test
|
| } // namespace ash
|
|
|