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

Side by Side Diff: services/window_manager/basic_focus_rules.h

Issue 765753003: Move window_manager service implementation to //services (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 | « services/window_manager/BUILD.gn ('k') | services/window_manager/basic_focus_rules.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef MOJO_SERIVCES_WINDOW_MANAGER_BASIC_FOCUS_RULES_H_ 5 #ifndef SERVICES_WINDOW_MANAGER_BASIC_FOCUS_RULES_H_
6 #define MOJO_SERIVCES_WINDOW_MANAGER_BASIC_FOCUS_RULES_H_ 6 #define SERVICES_WINDOW_MANAGER_BASIC_FOCUS_RULES_H_
7 7
8 #include "mojo/services/window_manager/focus_rules.h" 8 #include "services/window_manager/focus_rules.h"
9 9
10 namespace mojo { 10 namespace mojo {
11 11
12 class View; 12 class View;
13 13
14 // The focusing rules used inside a window manager. 14 // The focusing rules used inside a window manager.
15 // 15 //
16 // This is intended to be a user supplyable, subclassable component passed to 16 // This is intended to be a user supplyable, subclassable component passed to
17 // WindowManagerApp, allowing for the creation of other window managers. 17 // WindowManagerApp, allowing for the creation of other window managers.
18 // 18 //
(...skipping 16 matching lines...) Expand all
35 mojo::View* GetNextActivatableView(mojo::View* activatable) const override; 35 mojo::View* GetNextActivatableView(mojo::View* activatable) const override;
36 36
37 private: 37 private:
38 mojo::View* window_container_; 38 mojo::View* window_container_;
39 39
40 DISALLOW_COPY_AND_ASSIGN(BasicFocusRules); 40 DISALLOW_COPY_AND_ASSIGN(BasicFocusRules);
41 }; 41 };
42 42
43 } // namespace mojo 43 } // namespace mojo
44 44
45 #endif // MOJO_SERIVCES_WINDOW_MANAGER_BASIC_FOCUS_RULES_H_ 45 #endif // SERVICES_WINDOW_MANAGER_BASIC_FOCUS_RULES_H_
OLDNEW
« no previous file with comments | « services/window_manager/BUILD.gn ('k') | services/window_manager/basic_focus_rules.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698