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 |
| 21 } |
| 22 |
| 23 #endif // COMPONENTS_RAPPOR_RAPPOR_UTILS_H_ |
| 24 |
OLD | NEW |