blob: 276c9ab1ddfc869253858a2f92acf017247f87d4 [file] [log] [blame]
oshimaa15deb02016-05-11 00:19:331// Copyright (c) 2012 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
5#include "ui/display/display_observer.h"
6
7namespace display {
8
9DisplayObserver::~DisplayObserver() {}
10
Scott Violet49b77ab2017-07-14 19:30:1411void DisplayObserver::OnWillProcessDisplayChanges() {}
12
13void DisplayObserver::OnDidProcessDisplayChanges() {}
14
mswb2f3c132016-08-31 18:47:3415void DisplayObserver::OnDisplayAdded(const Display& new_display) {}
16
17void DisplayObserver::OnDisplayRemoved(const Display& old_display) {}
18
19void DisplayObserver::OnDisplayMetricsChanged(const Display& display,
20 uint32_t changed_metrics) {}
21
oshimaa15deb02016-05-11 00:19:3322} // namespace display