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

Side by Side Diff: remoting/protocol/jingle_messages_unittest.cc

Issue 1542203002: Switch to standard integer types in remoting/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-remoting-host
Patch Set: Created 5 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/protocol/jingle_messages.h" 5 #include "remoting/protocol/jingle_messages.h"
6 6
7 #include <stddef.h>
8
7 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/macros.h"
8 #include "remoting/protocol/content_description.h" 11 #include "remoting/protocol/content_description.h"
9 #include "testing/gmock/include/gmock/gmock.h" 12 #include "testing/gmock/include/gmock/gmock.h"
10 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
11 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h" 14 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h"
12 #include "third_party/webrtc/libjingle/xmpp/constants.h" 15 #include "third_party/webrtc/libjingle/xmpp/constants.h"
13 16
14 using buzz::QName; 17 using buzz::QName;
15 using buzz::XmlAttr; 18 using buzz::XmlAttr;
16 using buzz::XmlElement; 19 using buzz::XmlElement;
17 20
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 EXPECT_FALSE(JingleMessage::IsJingleMessage(source_message.get())); 502 EXPECT_FALSE(JingleMessage::IsJingleMessage(source_message.get()));
500 503
501 JingleMessage message; 504 JingleMessage message;
502 std::string error; 505 std::string error;
503 EXPECT_FALSE(message.ParseXml(source_message.get(), &error)); 506 EXPECT_FALSE(message.ParseXml(source_message.get(), &error));
504 EXPECT_FALSE(error.empty()); 507 EXPECT_FALSE(error.empty());
505 } 508 }
506 509
507 } // namespace protocol 510 } // namespace protocol
508 } // namespace remoting 511 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/it2me_host_authenticator_factory.h ('k') | remoting/protocol/jingle_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698