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

Side by Side Diff: sky/tools/debugger/debugger.h

Issue 698543005: Make a pure mojo::View version of the aura::Window FocusController. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: sky comments Created 6 years, 1 month 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 | « sky/tools/debugger/BUILD.gn ('k') | sky/tools/debugger/debugger.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 #include "base/memory/weak_ptr.h" 5 #include "base/memory/weak_ptr.h"
6 #include "mojo/public/cpp/application/application_delegate.h" 6 #include "mojo/public/cpp/application/application_delegate.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/connect.h" 8 #include "mojo/public/cpp/application/connect.h"
9 #include "mojo/public/cpp/application/service_provider_impl.h" 9 #include "mojo/public/cpp/application/service_provider_impl.h"
10 #include "mojo/services/public/cpp/view_manager/view_manager.h" 10 #include "mojo/services/public/cpp/view_manager/view_manager.h"
11 #include "mojo/services/public/cpp/view_manager/view_manager_delegate.h" 11 #include "mojo/services/public/cpp/view_manager/view_manager_delegate.h"
12 #include "mojo/services/public/cpp/view_manager/view_observer.h" 12 #include "mojo/services/public/cpp/view_manager/view_observer.h"
13 #include "mojo/services/public/interfaces/input_events/input_events.mojom.h" 13 #include "mojo/services/public/interfaces/input_events/input_events.mojom.h"
14 #include "mojo/services/public/interfaces/navigation/navigation.mojom.h" 14 #include "mojo/services/public/interfaces/navigation/navigation.mojom.h"
15 #include "mojo/services/window_manager/window_manager_app.h" 15 #include "mojo/services/window_manager/window_manager_app.h"
16 #include "mojo/services/window_manager/window_manager_delegate.h" 16 #include "mojo/services/window_manager/window_manager_delegate.h"
17 #include "sky/tools/debugger/debugger.mojom.h" 17 #include "sky/tools/debugger/debugger.mojom.h"
18 #include "sky/tools/debugger/focus_rules.h"
19 #include "sky/tools/debugger/navigator_host_impl.h" 18 #include "sky/tools/debugger/navigator_host_impl.h"
20 #include "sky/viewer/services/inspector.mojom.h" 19 #include "sky/viewer/services/inspector.mojom.h"
21 20
22 namespace sky { 21 namespace sky {
23 namespace debugger { 22 namespace debugger {
24 23
25 class SkyDebugger : public mojo::ApplicationDelegate, 24 class SkyDebugger : public mojo::ApplicationDelegate,
26 public mojo::ViewManagerDelegate, 25 public mojo::ViewManagerDelegate,
27 public mojo::ViewObserver, 26 public mojo::ViewObserver,
28 public mojo::InterfaceFactory<Debugger>, 27 public mojo::InterfaceFactory<Debugger>,
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 71
73 NavigatorHostFactory navigator_host_factory_; 72 NavigatorHostFactory navigator_host_factory_;
74 73
75 base::WeakPtrFactory<SkyDebugger> weak_factory_; 74 base::WeakPtrFactory<SkyDebugger> weak_factory_;
76 75
77 DISALLOW_COPY_AND_ASSIGN(SkyDebugger); 76 DISALLOW_COPY_AND_ASSIGN(SkyDebugger);
78 }; 77 };
79 78
80 } // namespace debugger 79 } // namespace debugger
81 } // namespace sky 80 } // namespace sky
OLDNEW
« no previous file with comments | « sky/tools/debugger/BUILD.gn ('k') | sky/tools/debugger/debugger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698