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

Side by Side Diff: third_party/libjingle_xmpp/xmllite/xmlconstants.cc

Issue 2443903004: Add xmllite and xmpp sources to third_party/ (Closed)
Patch Set: Fix GN and sort includes Created 3 years, 12 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 unified diff | Download patch
OLDNEW
(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/libjingle_xmpp/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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698