Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Unified Diff: net/base/url_constants.cc

Issue 254763005: Move some content url constants to /url. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Initial patches. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/base/url_constants.cc
diff --git a/tools/clang/blink_gc_plugin/tests/inner_class.cpp b/net/base/url_constants.cc
similarity index 53%
copy from tools/clang/blink_gc_plugin/tests/inner_class.cpp
copy to net/base/url_constants.cc
index 49c24602880eff5aef69854001abb245dda945fd..8237374ce4e0283a16e20f273ceec8e7a5500e89 100644
--- a/tools/clang/blink_gc_plugin/tests/inner_class.cpp
+++ b/net/base/url_constants.cc
@@ -2,13 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "inner_class.h"
+#include "net/base/url_constants.h"
-namespace WebCore {
+namespace net {
-void SomeObject::InnerObject::trace(Visitor* visitor)
-{
- // Missing: visitor->trace(m_obj);
-}
+const char kHttpScheme[] = "http";
+const char kHttpsScheme[] = "https";
-}
+} // namespace net

Powered by Google App Engine
This is Rietveld 408576698