oshima | a15deb0 | 2016-05-11 00:19:33 | [diff] [blame] | 1 | // 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 | |
| 7 | namespace display { |
| 8 | |
| 9 | DisplayObserver::~DisplayObserver() {} |
| 10 | |
Scott Violet | 49b77ab | 2017-07-14 19:30:14 | [diff] [blame] | 11 | void DisplayObserver::OnWillProcessDisplayChanges() {} |
| 12 | |
| 13 | void DisplayObserver::OnDidProcessDisplayChanges() {} |
| 14 | |
msw | b2f3c13 | 2016-08-31 18:47:34 | [diff] [blame] | 15 | void DisplayObserver::OnDisplayAdded(const Display& new_display) {} |
| 16 | |
| 17 | void DisplayObserver::OnDisplayRemoved(const Display& old_display) {} |
| 18 | |
| 19 | void DisplayObserver::OnDisplayMetricsChanged(const Display& display, |
| 20 | uint32_t changed_metrics) {} |
| 21 | |
oshima | a15deb0 | 2016-05-11 00:19:33 | [diff] [blame] | 22 | } // namespace display |