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

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

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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 | « remoting/protocol/connection_to_client.h ('k') | remoting/protocol/connection_to_host.h » ('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 (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/connection_to_client.h" 5 #include "remoting/protocol/connection_to_client.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "base/message_loop/message_loop_proxy.h" 9 #include "base/message_loop/message_loop_proxy.h"
10 #include "base/run_loop.h" 10 #include "base/run_loop.h"
11 #include "remoting/base/constants.h" 11 #include "remoting/base/constants.h"
12 #include "remoting/protocol/fake_session.h" 12 #include "remoting/protocol/fake_session.h"
13 #include "remoting/protocol/protocol_mock_objects.h" 13 #include "remoting/protocol/protocol_mock_objects.h"
14 #include "testing/gmock/include/gmock/gmock.h" 14 #include "testing/gmock/include/gmock/gmock.h"
15 15
16 using ::testing::_; 16 using ::testing::_;
17 using ::testing::NotNull; 17 using ::testing::NotNull;
18 using ::testing::StrictMock; 18 using ::testing::StrictMock;
19 19
20 namespace remoting { 20 namespace remoting {
21 namespace protocol { 21 namespace protocol {
22 22
23 class ConnectionToClientTest : public testing::Test { 23 class ConnectionToClientTest : public testing::Test {
24 public: 24 public:
25 ConnectionToClientTest() { 25 ConnectionToClientTest() {
26 } 26 }
27 27
28 protected: 28 protected:
29 virtual void SetUp() OVERRIDE { 29 virtual void SetUp() override {
30 session_ = new FakeSession(); 30 session_ = new FakeSession();
31 31
32 // Allocate a ClientConnection object with the mock objects. 32 // Allocate a ClientConnection object with the mock objects.
33 viewer_.reset(new ConnectionToClient(session_)); 33 viewer_.reset(new ConnectionToClient(session_));
34 viewer_->set_clipboard_stub(&clipboard_stub_); 34 viewer_->set_clipboard_stub(&clipboard_stub_);
35 viewer_->set_host_stub(&host_stub_); 35 viewer_->set_host_stub(&host_stub_);
36 viewer_->set_input_stub(&input_stub_); 36 viewer_->set_input_stub(&input_stub_);
37 viewer_->SetEventHandler(&handler_); 37 viewer_->SetEventHandler(&handler_);
38 EXPECT_CALL(handler_, OnConnectionAuthenticated(viewer_.get())); 38 EXPECT_CALL(handler_, OnConnectionAuthenticated(viewer_.get()));
39 EXPECT_CALL(handler_, OnConnectionChannelsConnected(viewer_.get())); 39 EXPECT_CALL(handler_, OnConnectionChannelsConnected(viewer_.get()));
40 session_->event_handler()->OnSessionStateChange(Session::CONNECTED); 40 session_->event_handler()->OnSessionStateChange(Session::CONNECTED);
41 session_->event_handler()->OnSessionStateChange(Session::AUTHENTICATED); 41 session_->event_handler()->OnSessionStateChange(Session::AUTHENTICATED);
42 base::RunLoop().RunUntilIdle(); 42 base::RunLoop().RunUntilIdle();
43 } 43 }
44 44
45 virtual void TearDown() OVERRIDE { 45 virtual void TearDown() override {
46 viewer_.reset(); 46 viewer_.reset();
47 base::RunLoop().RunUntilIdle(); 47 base::RunLoop().RunUntilIdle();
48 } 48 }
49 49
50 base::MessageLoop message_loop_; 50 base::MessageLoop message_loop_;
51 MockConnectionToClientEventHandler handler_; 51 MockConnectionToClientEventHandler handler_;
52 MockClipboardStub clipboard_stub_; 52 MockClipboardStub clipboard_stub_;
53 MockHostStub host_stub_; 53 MockHostStub host_stub_;
54 MockInputStub input_stub_; 54 MockInputStub input_stub_;
55 scoped_ptr<ConnectionToClient> viewer_; 55 scoped_ptr<ConnectionToClient> viewer_;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 base::RunLoop().RunUntilIdle(); 99 base::RunLoop().RunUntilIdle();
100 100
101 EXPECT_CALL(handler_, OnConnectionClosed(viewer_.get(), SESSION_REJECTED)); 101 EXPECT_CALL(handler_, OnConnectionClosed(viewer_.get(), SESSION_REJECTED));
102 session_->set_error(SESSION_REJECTED); 102 session_->set_error(SESSION_REJECTED);
103 session_->event_handler()->OnSessionStateChange(Session::FAILED); 103 session_->event_handler()->OnSessionStateChange(Session::FAILED);
104 base::RunLoop().RunUntilIdle(); 104 base::RunLoop().RunUntilIdle();
105 } 105 }
106 106
107 } // namespace protocol 107 } // namespace protocol
108 } // namespace remoting 108 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/connection_to_client.h ('k') | remoting/protocol/connection_to_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698