mock_sync_sessions_client.cc 558 B

1234567891011121314151617
  1. // Copyright 2018 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "components/sync_sessions/mock_sync_sessions_client.h"
  5. #include "components/sync_sessions/local_session_event_router.h"
  6. namespace sync_sessions {
  7. MockSyncSessionsClient::MockSyncSessionsClient() {
  8. ON_CALL(*this, ShouldSyncURL(testing::_))
  9. .WillByDefault(testing::Return(true));
  10. }
  11. MockSyncSessionsClient::~MockSyncSessionsClient() = default;
  12. } // namespace sync_sessions