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

Side by Side Diff: mash/wm/accelerator_registrar_apptest.cc

Issue 1725353003: Eliminate mojo::Shell client lib class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@15connector
Patch Set: . Created 4 years, 10 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 | « mash/task_viewer/task_viewer.cc ('k') | mash/wm/non_client_frame_controller.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 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 <stdint.h> 5 #include <stdint.h>
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/run_loop.h" 9 #include "base/run_loop.h"
10 #include "components/mus/public/cpp/event_matcher.h" 10 #include "components/mus/public/cpp/event_matcher.h"
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 DISALLOW_COPY_AND_ASSIGN(TestAcceleratorHandler); 65 DISALLOW_COPY_AND_ASSIGN(TestAcceleratorHandler);
66 }; 66 };
67 67
68 class AcceleratorRegistrarTest : public mojo::test::ApplicationTestBase { 68 class AcceleratorRegistrarTest : public mojo::test::ApplicationTestBase {
69 public: 69 public:
70 AcceleratorRegistrarTest() {} 70 AcceleratorRegistrarTest() {}
71 ~AcceleratorRegistrarTest() override {} 71 ~AcceleratorRegistrarTest() override {}
72 72
73 protected: 73 protected:
74 void ConnectToRegistrar(AcceleratorRegistrarPtr* registrar) { 74 void ConnectToRegistrar(AcceleratorRegistrarPtr* registrar) {
75 shell()->ConnectToInterface("mojo:desktop_wm", registrar); 75 connector()->ConnectToInterface("mojo:desktop_wm", registrar);
76 } 76 }
77 77
78 private: 78 private:
79 DISALLOW_COPY_AND_ASSIGN(AcceleratorRegistrarTest); 79 DISALLOW_COPY_AND_ASSIGN(AcceleratorRegistrarTest);
80 }; 80 };
81 81
82 TEST_F(AcceleratorRegistrarTest, AcceleratorRegistrarBasic) { 82 TEST_F(AcceleratorRegistrarTest, AcceleratorRegistrarBasic) {
83 AcceleratorRegistrarPtr registrar_first; 83 AcceleratorRegistrarPtr registrar_first;
84 ConnectToRegistrar(&registrar_first); 84 ConnectToRegistrar(&registrar_first);
85 TestAcceleratorHandler handler_first(std::move(registrar_first)); 85 TestAcceleratorHandler handler_first(std::move(registrar_first));
(...skipping 19 matching lines...) Expand all
105 EXPECT_FALSE(handler_first.AttemptToInstallAccelerator( 105 EXPECT_FALSE(handler_first.AttemptToInstallAccelerator(
106 3, mus::CreateKeyMatcher(mus::mojom::KeyboardCode::N, 106 3, mus::CreateKeyMatcher(mus::mojom::KeyboardCode::N,
107 mus::mojom::kEventFlagShiftDown))); 107 mus::mojom::kEventFlagShiftDown)));
108 EXPECT_FALSE(handler_second.AttemptToInstallAccelerator( 108 EXPECT_FALSE(handler_second.AttemptToInstallAccelerator(
109 3, mus::CreateKeyMatcher(mus::mojom::KeyboardCode::N, 109 3, mus::CreateKeyMatcher(mus::mojom::KeyboardCode::N,
110 mus::mojom::kEventFlagShiftDown))); 110 mus::mojom::kEventFlagShiftDown)));
111 } 111 }
112 112
113 } // namespace wm 113 } // namespace wm
114 } // namespace mash 114 } // namespace mash
OLDNEW
« no previous file with comments | « mash/task_viewer/task_viewer.cc ('k') | mash/wm/non_client_frame_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698