Allow the externalfile scheme to be whitelisted as an allowed scheme for component...
[chromium-blink-merge.git] / components / cloud_devices / common / cloud_devices_urls.h
blob76de7005b0700baa3f1a7242291c1233728302c8
1 // Copyright 2014 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 COMPONENTS_CLOUD_DEVICES_COMMON_CLOUD_DEVICES_URLS_H_
6 #define COMPONENTS_CLOUD_DEVICES_COMMON_CLOUD_DEVICES_URLS_H_
8 #include <string>
10 #include "url/gurl.h"
12 namespace cloud_devices {
14 extern const char kCloudPrintAuthScope[];
15 extern const char kCloudDevicesAuthScope[];
16 extern const char kCloudPrintLearnMoreURL[];
17 extern const char kCloudPrintTestPageURL[];
19 GURL GetCloudPrintURL();
20 GURL GetCloudPrintRelativeURL(const std::string& relative_path);
21 GURL GetCloudPrintEnableURL(const std::string& proxy_id);
22 GURL GetCloudPrintEnableWithSigninURL(const std::string& proxy_id);
23 GURL GetCloudPrintManageDeviceURL(const std::string& device_id);
24 GURL GetCloudPrintSigninURL();
25 GURL GetCloudPrintAddAccountURL();
27 GURL GetCloudDevicesURL();
28 GURL GetCloudDevicesRelativeURL(const std::string& relative_path);
30 } // namespace cloud_devices
32 #endif // COMPONENTS_CLOUD_DEVICES_COMMON_CLOUD_DEVICES_URLS_H_