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 #ifndef WEBRTC_LIBJINGLE_XMLLITE_XMLCONSTANTS_H_ |
| 6 #define WEBRTC_LIBJINGLE_XMLLITE_XMLCONSTANTS_H_ |
| 7 |
| 8 #include "third_party/xmllite/qname.h" |
| 9 |
| 10 namespace buzz { |
| 11 |
| 12 extern const char STR_EMPTY[]; |
| 13 extern const char NS_XML[]; |
| 14 extern const char NS_XMLNS[]; |
| 15 extern const char STR_XMLNS[]; |
| 16 extern const char STR_XML[]; |
| 17 extern const char STR_VERSION[]; |
| 18 extern const char STR_ENCODING[]; |
| 19 |
| 20 extern const StaticQName QN_XMLNS; |
| 21 |
| 22 } // namespace buzz |
| 23 |
| 24 #endif // WEBRTC_LIBJINGLE_XMLLITE_XMLCONSTANTS_H_ |
OLD | NEW |