From e8ca69c873f105a8c7778476e12f0a24ee3ba4d7 Mon Sep 17 00:00:00 2001 From: "sungmann.cho@navercorp.com" Date: Wed, 7 May 2014 15:31:19 +0000 Subject: Move some content url constants to /url. This CL moves the content::kHttpScheme and content::kHttpsScheme to /url. This is a follow up to https://codereview.chromium.org/25533005. BUG=306258 TEST=compile Review URL: https://codereview.chromium.org/254763005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268782 0039d316-1c4b-4281-b951-d872f2087c98 --- url/url_constants.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 url/url_constants.cc (limited to 'url/url_constants.cc') diff --git a/url/url_constants.cc b/url/url_constants.cc new file mode 100644 index 0000000..7df30da --- /dev/null +++ b/url/url_constants.cc @@ -0,0 +1,12 @@ +// Copyright 2014 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 "url/url_constants.h" + +namespace url { + +const char kHttpScheme[] = "http"; +const char kHttpsScheme[] = "https"; + +} // namespace url -- cgit v1.1