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

Side by Side Diff: chrome/browser/metrics_log_unittest.cc

Issue 14165: Reverting 7083,7079.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 12 years 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 | « chrome/browser/history/history_backend_unittest.cc ('k') | chrome/browser/ssl_error_info.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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 <string> 5 #include <string>
6 6
7 #include "base/string_util.h" 7 #include "base/string_util.h"
8 #include "base/time.h" 8 #include "base/time.h"
9 #include "chrome/browser/metrics_log.h" 9 #include "chrome/browser/metrics_log.h"
10 #include "googleurl/src/gurl.h" 10 #include "googleurl/src/gurl.h"
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 TEST(MetricsLogTest, CreateHash) { 106 TEST(MetricsLogTest, CreateHash) {
107 static const struct { 107 static const struct {
108 std::string input; 108 std::string input;
109 std::string output; 109 std::string output;
110 } cases[] = { 110 } cases[] = {
111 {"Back", "0x0557fa923dcee4d0"}, 111 {"Back", "0x0557fa923dcee4d0"},
112 {"Forward", "0x67d2f6740a8eaebf"}, 112 {"Forward", "0x67d2f6740a8eaebf"},
113 {"NewTab", "0x290eb683f96572f1"}, 113 {"NewTab", "0x290eb683f96572f1"},
114 }; 114 };
115 115
116 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(cases); i++) { 116 for (int i = 0; i < arraysize(cases); i++) {
117 std::string hash_string = MetricsLog::CreateHash(cases[i].input); 117 std::string hash_string = MetricsLog::CreateHash(cases[i].input);
118 118
119 // Convert to hex string 119 // Convert to hex string
120 // We're only checking the first 8 bytes, because that's what 120 // We're only checking the first 8 bytes, because that's what
121 // the metrics server uses. 121 // the metrics server uses.
122 std::string hash_hex = "0x"; 122 std::string hash_hex = "0x";
123 for (size_t j = 0; j < 8; j++) { 123 for (size_t j = 0; j < 8; j++) {
124 StringAppendF(&hash_hex, "%02x", 124 StringAppendF(&hash_hex, "%02x",
125 static_cast<uint8>(hash_string.data()[j])); 125 static_cast<uint8>(hash_string.data()[j]));
126 } 126 }
127 EXPECT_EQ(cases[i].output, hash_hex); 127 EXPECT_EQ(cases[i].output, hash_hex);
128 } 128 }
129 }; 129 };
130 130
OLDNEW
« no previous file with comments | « chrome/browser/history/history_backend_unittest.cc ('k') | chrome/browser/ssl_error_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698