1 // Copyright 2015 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.
5 #ifndef GOOGLE_APIS_GCM_BASE_GCM_UTIL_H_
6 #define GOOGLE_APIS_GCM_BASE_GCM_UTIL_H_
12 // Encodes key-value pair into form format that could be submitted as http post
13 // data. Each key-value pair is separated by an '&', and each key is separated
14 // from its value by an '='.
15 void BuildFormEncoding(const std::string
& key
,
16 const std::string
& value
,
21 #endif // GOOGLE_APIS_GCM_BASE_GCM_UTIL_H_