Index: components/rappor/rappor_utils.cc |
diff --git a/components/rappor/rappor_utils.cc b/components/rappor/rappor_utils.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a08d8ae59bd09494f97e51643de32221a41fa5f6 |
--- /dev/null |
+++ b/components/rappor/rappor_utils.cc |
@@ -0,0 +1,19 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "components/rappor/rappor_utils.h" |
+ |
+namespace rappor { |
+ |
+void GetUrlParts(const GURL& url, std::vector<std::string>* strs) { |
+ strs->push_back(url.spec()); |
+ strs->push_back(url.host()); |
+ // TODO(holte) break up host more |
+ strs->push_back(url.query()); |
+ strs->push_back(url.path()); |
+ // strs.push_back(url.ref()); |
+} |
+ |
+} // namespace rappor |
+ |