mock_display_client.cc 486 B

1234567891011121314151617
  1. // Copyright 2017 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/viz/test/mock_display_client.h"
  5. namespace viz {
  6. MockDisplayClient::MockDisplayClient() = default;
  7. MockDisplayClient::~MockDisplayClient() = default;
  8. mojo::PendingRemote<mojom::DisplayClient> MockDisplayClient::BindRemote() {
  9. return receiver_.BindNewPipeAndPassRemote();
  10. }
  11. } // namespace viz