blob: 9a9e8a024af9874d91cdf21524b044b1186eaa62 [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SYNC_ENGINE_NET_URL_TRANSLATOR_H_
#define COMPONENTS_SYNC_ENGINE_NET_URL_TRANSLATOR_H_
#include <string>
#include "url/gurl.h"
namespace syncer {
// Appends the appropriate query string to the given sync base URL.
GURL AppendSyncQueryString(const GURL& base, const std::string& client_id);
} // namespace syncer
#endif // COMPONENTS_SYNC_ENGINE_NET_URL_TRANSLATOR_H_