Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: ui/display/chromeos/display_configurator.cc

Issue 972153004: Make ui::DisplayConfigurator a singleton (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make a Singleton Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/display/chromeos/display_configurator.h" 5 #include "ui/display/chromeos/display_configurator.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/sys_info.h" 10 #include "base/sys_info.h"
(...skipping 995 matching lines...) Expand 10 before | Expand all | Expand 10 after
1006 if (success) { 1006 if (success) {
1007 FOR_EACH_OBSERVER( 1007 FOR_EACH_OBSERVER(
1008 Observer, observers_, OnDisplayModeChanged(cached_displays_)); 1008 Observer, observers_, OnDisplayModeChanged(cached_displays_));
1009 } else { 1009 } else {
1010 FOR_EACH_OBSERVER( 1010 FOR_EACH_OBSERVER(
1011 Observer, observers_, OnDisplayModeChangeFailed(cached_displays_, 1011 Observer, observers_, OnDisplayModeChangeFailed(cached_displays_,
1012 attempted_state)); 1012 attempted_state));
1013 } 1013 }
1014 } 1014 }
1015 1015
1016 // static
1017 DisplayConfigurator* DisplayConfigurator::GetInstance() {
1018 return Singleton<DisplayConfigurator>::get();
1019 }
1020
1016 } // namespace ui 1021 } // namespace ui
OLDNEW
« no previous file with comments | « ui/display/chromeos/display_configurator.h ('k') | ui/display/chromeos/display_configurator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698