OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 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 #ifndef CHROME_COMMON_OMAHA_QUERY_PARAMS_H_ | |
6 #define CHROME_COMMON_OMAHA_QUERY_PARAMS_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "base/basictypes.h" | |
11 | |
12 namespace chrome { | |
13 | |
14 std::string GetOmahaQueryParams(const std::string& prod); | |
asargent_no_longer_on_chrome
2013/03/06 00:45:06
nit: this method could use a brief overview commen
jackhou
2013/03/06 03:56:36
Done.
Not sure if we expect to add other values,
| |
15 | |
16 } // namespace chrome | |
17 | |
18 #endif // CHROME_COMMON_OMAHA_QUERY_PARAMS_H_ | |
OLD | NEW |