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

Side by Side Diff: ui/display/display_util.h

Issue 187073002: Refactoring display configuration state to allow generic state objects (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef UI_DISPLAY_DISPLAY_UTIL_H_
6 #define UI_DISPLAY_DISPLAY_UTIL_H_
7
8 #include <string>
9
10 #include "ui/display/display_constants.h"
11
12 namespace ui {
13
14 // Returns the OutputType by matching known type prefixes to |name|. Returns
15 // OUTPUT_TYPE_UNKNOWN if no valid match.
16 OutputType GetOutputTypeFromName(const std::string& name);
Daniel Erat 2014/03/05 01:56:12 should this be chrome os (or X11)-specific?
dnicoara 2014/03/05 17:29:25 I moved it under ui/display/chromeos for now. If w
17
18 } // namespace ui
19
20 #endif // UI_DISPLAY_DISPLAY_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698