summaryrefslogtreecommitdiffstats
path: root/ui/ozone/common/stub_overlay_manager.cc
blob: 45f8a5fa503a1e7c208b3a5b0296ddee84a37e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/ozone/common/stub_overlay_manager.h"
#include "ui/ozone/public/overlay_candidates_ozone.h"

namespace ui {

StubOverlayManager::StubOverlayManager() {
}

StubOverlayManager::~StubOverlayManager() {
}

scoped_ptr<OverlayCandidatesOzone> StubOverlayManager::CreateOverlayCandidates(
    gfx::AcceleratedWidget w) {
  return nullptr;
}

bool StubOverlayManager::CanShowPrimaryPlaneAsOverlay() {
  return false;
}

}  // namespace ui