OLD | NEW |
(Empty) | |
| 1 // Copyright 2004 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. |
| 4 |
| 5 #include "third_party/xmllite/xmlconstants.h" |
| 6 |
| 7 namespace buzz { |
| 8 |
| 9 const char STR_EMPTY[] = ""; |
| 10 const char NS_XML[] = "http://www.w3.org/XML/1998/namespace"; |
| 11 const char NS_XMLNS[] = "http://www.w3.org/2000/xmlns/"; |
| 12 const char STR_XMLNS[] = "xmlns"; |
| 13 const char STR_XML[] = "xml"; |
| 14 const char STR_VERSION[] = "version"; |
| 15 const char STR_ENCODING[] = "encoding"; |
| 16 |
| 17 const StaticQName QN_XMLNS = { STR_EMPTY, STR_XMLNS }; |
| 18 |
| 19 } // namespace buzz |
OLD | NEW |