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

Side by Side Diff: remoting/host/native_messaging/native_messaging_reader_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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/host/native_messaging/native_messaging_reader.h" 5 #include "remoting/host/native_messaging/native_messaging_reader.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "base/run_loop.h" 11 #include "base/run_loop.h"
12 #include "base/values.h" 12 #include "base/values.h"
13 #include "remoting/host/setup/test_util.h" 13 #include "remoting/host/setup/test_util.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
15 15
16 namespace remoting { 16 namespace remoting {
17 17
18 class NativeMessagingReaderTest : public testing::Test { 18 class NativeMessagingReaderTest : public testing::Test {
19 public: 19 public:
20 NativeMessagingReaderTest(); 20 NativeMessagingReaderTest();
21 virtual ~NativeMessagingReaderTest(); 21 virtual ~NativeMessagingReaderTest();
22 22
23 virtual void SetUp() OVERRIDE; 23 virtual void SetUp() override;
24 24
25 // Starts the reader and runs the MessageLoop to completion. 25 // Starts the reader and runs the MessageLoop to completion.
26 void Run(); 26 void Run();
27 27
28 // MessageCallback passed to the Reader. Stores |message| so it can be 28 // MessageCallback passed to the Reader. Stores |message| so it can be
29 // verified by tests. 29 // verified by tests.
30 void OnMessage(scoped_ptr<base::Value> message); 30 void OnMessage(scoped_ptr<base::Value> message);
31 31
32 // Writes a message (header+body) to the write-end of the pipe. 32 // Writes a message (header+body) to the write-end of the pipe.
33 void WriteMessage(std::string message); 33 void WriteMessage(std::string message);
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 Run(); 145 Run();
146 EXPECT_TRUE(message_); 146 EXPECT_TRUE(message_);
147 base::DictionaryValue* message_dict; 147 base::DictionaryValue* message_dict;
148 EXPECT_TRUE(message_->GetAsDictionary(&message_dict)); 148 EXPECT_TRUE(message_->GetAsDictionary(&message_dict));
149 int result; 149 int result;
150 EXPECT_TRUE(message_dict->GetInteger("foo", &result)); 150 EXPECT_TRUE(message_dict->GetInteger("foo", &result));
151 EXPECT_EQ(42, result); 151 EXPECT_EQ(42, result);
152 } 152 }
153 153
154 } // namespace remoting 154 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/mouse_clamping_filter.h ('k') | remoting/host/native_messaging/native_messaging_writer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698