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

Side by Side Diff: third_party/xmllite/xmlprinter.h

Issue 2443903004: Add xmllite and xmpp sources to third_party/ (Closed)
Patch Set: Restored includes in jingle/ as well Created 4 years 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 #ifndef WEBRTC_LIBJINGLE_XMLLITE_XMLPRINTER_H_
6 #define WEBRTC_LIBJINGLE_XMLLITE_XMLPRINTER_H_
7
8 #include <iosfwd>
9 #include <string>
10
11 namespace buzz {
12
13 class XmlElement;
14 class XmlnsStack;
15
16 class XmlPrinter {
17 public:
18 static void PrintXml(std::ostream* pout, const XmlElement* pelt);
19
20 static void PrintXml(std::ostream* pout, const XmlElement* pelt,
21 XmlnsStack* ns_stack);
22 };
23
24 } // namespace buzz
25
26 #endif // WEBRTC_LIBJINGLE_XMLLITE_XMLPRINTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698