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

Side by Side Diff: services/window_manager/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/focus_controller_unittest.cc ('k') | services/window_manager/main.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_FOCUS_RULES_H_ 5 #ifndef SERVICES_WINDOW_MANAGER_FOCUS_RULES_H_
6 #define MOJO_SERIVCES_WINDOW_MANAGER_FOCUS_RULES_H_ 6 #define SERVICES_WINDOW_MANAGER_FOCUS_RULES_H_
7 7
8 #include "mojo/services/public/cpp/view_manager/types.h" 8 #include "mojo/services/public/cpp/view_manager/types.h"
9 #include "mojo/services/public/cpp/view_manager/view.h" 9 #include "mojo/services/public/cpp/view_manager/view.h"
10 10
11 namespace mojo { 11 namespace mojo {
12 12
13 // Implemented by an object that establishes the rules about what can be 13 // Implemented by an object that establishes the rules about what can be
14 // focused or activated. 14 // focused or activated.
15 class FocusRules { 15 class FocusRules {
16 public: 16 public:
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 // - it or its parent hierarchy is being hidden, or removed from the 52 // - it or its parent hierarchy is being hidden, or removed from the
53 // RootView. 53 // RootView.
54 // - it is being destroyed. 54 // - it is being destroyed.
55 // - it is being explicitly deactivated. 55 // - it is being explicitly deactivated.
56 // |ignore| cannot be null. 56 // |ignore| cannot be null.
57 virtual View* GetNextActivatableView(View* ignore) const = 0; 57 virtual View* GetNextActivatableView(View* ignore) const = 0;
58 }; 58 };
59 59
60 } // namespace mojo 60 } // namespace mojo
61 61
62 #endif // MOJO_SERIVCES_WINDOW_MANAGER_FOCUS_RULES_H_ 62 #endif // SERVICES_WINDOW_MANAGER_FOCUS_RULES_H_
OLDNEW
« no previous file with comments | « services/window_manager/focus_controller_unittest.cc ('k') | services/window_manager/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698