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

Side by Side Diff: components/rappor/rappor_utils.h

Issue 49753002: RAPPOR implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698