diff options
Diffstat (limited to 'ui/gfx')
-rw-r--r-- | ui/gfx/display_observer.cc | 12 | ||||
-rw-r--r-- | ui/gfx/display_observer.h | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/ui/gfx/display_observer.cc b/ui/gfx/display_observer.cc new file mode 100644 index 0000000..f8e3c07 --- /dev/null +++ b/ui/gfx/display_observer.cc @@ -0,0 +1,12 @@ +// Copyright (c) 2012 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/gfx/display_observer.h" + +namespace gfx { + +DisplayObserver::~DisplayObserver() { +} + +} // namespace gfx diff --git a/ui/gfx/display_observer.h b/ui/gfx/display_observer.h index c65f95d..85a4086 100644 --- a/ui/gfx/display_observer.h +++ b/ui/gfx/display_observer.h @@ -25,7 +25,7 @@ class UI_EXPORT DisplayObserver { virtual void OnDisplayRemoved(const Display& old_display) = 0; protected: - virtual ~DisplayObserver() {} + virtual ~DisplayObserver(); }; } // namespace gfx |