Chromium Code Reviews| 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"; |
|
abarth-chromium
2014/04/28 17:59:50
Sure, we can move these constants to //url
Sungmann Cho
2014/04/29 04:50:31
Done.
|
| -} |
| +} // namespace net |