Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // RapporRecorder holds all Rappors collected in the system, and methods for | |
| 6 // retrieving the recorded data. | |
| 7 | |
| 8 #ifndef COMPONENTS_RAPPOR_RAPPOR_UTILS_H_ | |
| 9 #define COMPONENTS_RAPPOR_RAPPOR_UTILS_H_ | |
| 10 | |
| 11 #include <string> | |
| 12 #include <vector> | |
| 13 | |
| 14 #include "url/gurl.h" | |
| 15 | |
| 16 namespace rappor { | |
| 17 | |
| 18 // Get a list of URL subcomponents appropriate for sampling. | |
| 19 void GetUrlParts(const GURL& url, std::vector<std::string>* strs); | |
| 20 } | |
|
Alexei Svitkine (slow)
2013/12/19 19:47:02
Nit: } // namespace rappor
And add a newline bef
Steven Holte
2013/12/20 03:03:55
Done.
| |
| 21 | |
| 22 #endif // COMPONENTS_RAPPOR_RAPPOR_UTILS_H_ | |
| OLD | NEW |