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

Side by Side Diff: blimp/common/logging_unittest.cc

Issue 2632803002: Remove all blimp network code. (Closed)
Patch Set: merge from origin/master for good measure Created 3 years, 11 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
« no previous file with comments | « blimp/common/BUILD.gn ('k') | blimp/net/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 <memory> 5 #include <memory>
6 #include <sstream> 6 #include <sstream>
7 #include <string> 7 #include <string>
8 8
9 #include "base/at_exit.h" 9 #include "base/at_exit.h"
10 #include "base/strings/stringprintf.h" 10 #include "base/strings/stringprintf.h"
11 #include "blimp/common/create_blimp_message.h" 11 #include "blimp/common/create_blimp_message.h"
12 #include "blimp/common/logging.h" 12 #include "blimp/common/logging.h"
13 #include "blimp/common/proto/blimp_message.pb.h" 13 #include "blimp/common/proto/blimp_message.pb.h"
14 #include "blimp/common/proto/blob_channel.pb.h" 14 #include "blimp/common/proto/blob_channel.pb.h"
15 #include "blimp/net/test_common.h"
16 #include "testing/gmock/include/gmock/gmock.h" 15 #include "testing/gmock/include/gmock/gmock.h"
17 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
18 17
19 using testing::Return; 18 using testing::Return;
20 19
21 namespace blimp { 20 namespace blimp {
22 namespace { 21 namespace {
23 22
24 const int kTargetTab = 123; 23 const int kTargetTab = 123;
25 24
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 // Test SET_TEXT. 312 // Test SET_TEXT.
314 message.mutable_ime()->set_type(ImeMessage::SET_TEXT); 313 message.mutable_ime()->set_type(ImeMessage::SET_TEXT);
315 message.mutable_ime()->set_ime_text("1234"); 314 message.mutable_ime()->set_ime_text("1234");
316 VerifyLogOutput( 315 VerifyLogOutput(
317 "type=IME render_widget_id=1 subtype=SET_TEXT ime_text(length)=4", 316 "type=IME render_widget_id=1 subtype=SET_TEXT ime_text(length)=4",
318 message); 317 message);
319 } 318 }
320 319
321 } // namespace 320 } // namespace
322 } // namespace blimp 321 } // namespace blimp
OLDNEW
« no previous file with comments | « blimp/common/BUILD.gn ('k') | blimp/net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698