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

Side by Side Diff: chrome/browser/themes/browser_theme_pack.cc

Issue 7342047: Cleanup base/stl_util (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed unneeded include + rebase Created 9 years, 5 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
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/browser/themes/browser_theme_pack.h" 5 #include "chrome/browser/themes/browser_theme_pack.h"
6 6
7 #include "base/stl_util-inl.h" 7 #include "base/stl_util.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 #include "base/threading/thread_restrictions.h" 9 #include "base/threading/thread_restrictions.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
11 #include "base/values.h" 11 #include "base/values.h"
12 #include "chrome/browser/themes/theme_service.h" 12 #include "chrome/browser/themes/theme_service.h"
13 #include "content/browser/browser_thread.h" 13 #include "content/browser/browser_thread.h"
14 #include "grit/theme_resources.h" 14 #include "grit/theme_resources.h"
15 #include "grit/theme_resources_standard.h" 15 #include "grit/theme_resources_standard.h"
16 #include "grit/ui_resources.h" 16 #include "grit/ui_resources.h"
17 #include "net/base/file_stream.h" 17 #include "net/base/file_stream.h"
(...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 hsl.h = tints_[i].h; 1057 hsl.h = tints_[i].h;
1058 hsl.s = tints_[i].s; 1058 hsl.s = tints_[i].s;
1059 hsl.l = tints_[i].l; 1059 hsl.l = tints_[i].l;
1060 return hsl; 1060 return hsl;
1061 } 1061 }
1062 } 1062 }
1063 } 1063 }
1064 1064
1065 return ThemeService::GetDefaultTint(id); 1065 return ThemeService::GetDefaultTint(id);
1066 } 1066 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698