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

Side by Side Diff: shell/android/nfc_apptest.cc

Issue 1919313002: ApplicationImpl::ConnectToServiceDeprecated() -> mojo::ConnectToService() conversion, part 3. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 8 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 | « shell/android/android_handler.cc ('k') | shell/shell_apptest.cc » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "base/bind.h" 5 #include "base/bind.h"
6 #include "base/message_loop/message_loop.h" 6 #include "base/message_loop/message_loop.h"
7 #include "mojo/public/cpp/application/application_impl.h" 7 #include "mojo/public/cpp/application/application_impl.h"
8 #include "mojo/public/cpp/application/application_test_base.h" 8 #include "mojo/public/cpp/application/application_test_base.h"
9 #include "mojo/public/cpp/application/connect.h"
9 #include "mojo/public/cpp/bindings/callback.h" 10 #include "mojo/public/cpp/bindings/callback.h"
10 #include "mojo/public/cpp/environment/logging.h" 11 #include "mojo/public/cpp/environment/logging.h"
11 #include "mojo/public/cpp/system/macros.h" 12 #include "mojo/public/cpp/system/macros.h"
12 #include "mojo/services/nfc/interfaces/nfc.mojom.h" 13 #include "mojo/services/nfc/interfaces/nfc.mojom.h"
13 14
14 namespace mojo { 15 namespace mojo {
15 namespace { 16 namespace {
16 17
17 // Tests the NFC mojo service on android. 18 // Tests the NFC mojo service on android.
18 class NfcApplicationTest : public test::ApplicationTestBase { 19 class NfcApplicationTest : public test::ApplicationTestBase {
19 public: 20 public:
20 NfcApplicationTest() : ApplicationTestBase() {} 21 NfcApplicationTest() : ApplicationTestBase() {}
21 ~NfcApplicationTest() override {} 22 ~NfcApplicationTest() override {}
22 23
23 void TransmitOnNextConnectionResult(bool success) {} 24 void TransmitOnNextConnectionResult(bool success) {}
24 25
25 protected: 26 protected:
26 // ApplicationTestBase: 27 // ApplicationTestBase:
27 void SetUp() override { 28 void SetUp() override {
28 ApplicationTestBase::SetUp(); 29 ApplicationTestBase::SetUp();
29 application_impl()->ConnectToServiceDeprecated("mojo:nfc", &nfc_); 30 ConnectToService(application_impl()->shell(), "mojo:nfc", GetProxy(&nfc_));
30 } 31 }
31 32
32 nfc::NfcPtr nfc_; 33 nfc::NfcPtr nfc_;
33 nfc::NfcTransmissionPtr nfc_transmission_; 34 nfc::NfcTransmissionPtr nfc_transmission_;
34 35
35 private: 36 private:
36 MOJO_DISALLOW_COPY_AND_ASSIGN(NfcApplicationTest); 37 MOJO_DISALLOW_COPY_AND_ASSIGN(NfcApplicationTest);
37 }; 38 };
38 39
39 TEST_F(NfcApplicationTest, TransmitAndCancelNfc) { 40 TEST_F(NfcApplicationTest, TransmitAndCancelNfc) {
40 nfc::NfcDataPtr nfc_data = nfc::NfcData::New(); 41 nfc::NfcDataPtr nfc_data = nfc::NfcData::New();
41 nfc_->TransmitOnNextConnection( 42 nfc_->TransmitOnNextConnection(
42 nfc_data.Pass(), GetProxy(&nfc_transmission_), 43 nfc_data.Pass(), GetProxy(&nfc_transmission_),
43 base::Bind(&NfcApplicationTest::TransmitOnNextConnectionResult, 44 base::Bind(&NfcApplicationTest::TransmitOnNextConnectionResult,
44 base::Unretained(this))); 45 base::Unretained(this)));
45 nfc_transmission_->Cancel(); 46 nfc_transmission_->Cancel();
46 } 47 }
47 48
48 TEST_F(NfcApplicationTest, Register) { 49 TEST_F(NfcApplicationTest, Register) {
49 nfc_->Register(); 50 nfc_->Register();
50 } 51 }
51 52
52 } // namespace 53 } // namespace
53 } // namespace mojo 54 } // namespace mojo
OLDNEW
« no previous file with comments | « shell/android/android_handler.cc ('k') | shell/shell_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698