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

Side by Side Diff: ash/display/display_pref_util.h

Issue 14272007: Update the remaining include paths of base/string_piece.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
« no previous file with comments | « ash/display/display_controller.cc ('k') | cc/trees/layer_tree_host_perftest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #ifndef ASH_DISPLAY_DISPLAY_PREF_UTIL_H 5 #ifndef ASH_DISPLAY_DISPLAY_PREF_UTIL_H
6 #define ASH_DISPLAY_DISPLAY_PREF_UTIL_H 6 #define ASH_DISPLAY_DISPLAY_PREF_UTIL_H
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
11 #include "base/string_piece.h" 11 #include "base/strings/string_piece.h"
12 12
13 namespace ash { 13 namespace ash {
14 14
15 // Utility templates to create enum to string map and 15 // Utility templates to create enum to string map and
16 // a function to find an enum value from a string. 16 // a function to find an enum value from a string.
17 template<typename T> 17 template<typename T>
18 std::map<T, std::string>* CreateToStringMap(T k1, const std::string& v1, 18 std::map<T, std::string>* CreateToStringMap(T k1, const std::string& v1,
19 T k2, const std::string& v2, 19 T k2, const std::string& v2,
20 T k3, const std::string& v3, 20 T k3, const std::string& v3,
21 T k4, const std::string& v4) { 21 T k4, const std::string& v4) {
(...skipping 17 matching lines...) Expand all
39 *key = iter->first; 39 *key = iter->first;
40 return true; 40 return true;
41 } 41 }
42 } 42 }
43 return false; 43 return false;
44 } 44 }
45 45
46 } // namespace ash 46 } // namespace ash
47 47
48 #endif // ASH_DISPLAY_DISPLAY_PREF_UTIL_H 48 #endif // ASH_DISPLAY_DISPLAY_PREF_UTIL_H
OLDNEW
« no previous file with comments | « ash/display/display_controller.cc ('k') | cc/trees/layer_tree_host_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698