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

Side by Side Diff: chrome/installer/util/google_update_experiment_util.cc

Issue 16421004: Use a direct include of strings headers in chrome/installer/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 #include "chrome/installer/util/google_update_experiment_util.h" 5 #include "chrome/installer/util/google_update_experiment_util.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/stringprintf.h" 10 #include "base/strings/stringprintf.h"
11 #include "base/strings/utf_string_conversions.h" 11 #include "base/strings/utf_string_conversions.h"
12 #include "base/time.h" 12 #include "base/time.h"
13 13
14 namespace installer { 14 namespace installer {
15 15
16 namespace { 16 namespace {
17 17
18 const char* const kDays[] = 18 const char* const kDays[] =
19 { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; 19 { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
20 20
(...skipping 24 matching lines...) Expand all
45 then.day_of_month, 45 then.day_of_month,
46 kMonths[then.month - 1], 46 kMonths[then.month - 1],
47 then.year, 47 then.year,
48 then.hour, 48 then.hour,
49 then.minute, 49 then.minute,
50 then.second)); 50 then.second));
51 } 51 }
52 52
53 } // namespace installer 53 } // namespace installer
54 54
OLDNEW
« no previous file with comments | « chrome/installer/util/google_update_experiment_util.h ('k') | chrome/installer/util/google_update_settings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698