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

Side by Side Diff: mojo/shell/view_manager_loader.h

Issue 774473003: Move view_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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
jamesr 2014/12/02 02:01:17 is this file dead code? can I just delete it?
sky 2014/12/02 15:47:51 I believe so. Go ahead and nuke it.
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_SHELL_VIEW_MANAGER_LOADER_H_ 5 #ifndef MOJO_SHELL_VIEW_MANAGER_LOADER_H_
6 #define MOJO_SHELL_VIEW_MANAGER_LOADER_H_ 6 #define MOJO_SHELL_VIEW_MANAGER_LOADER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/scoped_vector.h" 10 #include "base/memory/scoped_vector.h"
11 #include "mojo/application_manager/application_loader.h" 11 #include "mojo/application_manager/application_loader.h"
12 #include "mojo/public/cpp/application/application_delegate.h" 12 #include "mojo/public/cpp/application/application_delegate.h"
13 #include "mojo/public/cpp/application/interface_factory.h" 13 #include "mojo/public/cpp/application/interface_factory.h"
14 #include "mojo/services/public/interfaces/view_manager/view_manager.mojom.h" 14 #include "mojo/services/public/interfaces/view_manager/view_manager.mojom.h"
15 #include "mojo/services/view_manager/view_manager_init_service_context.h" 15 #include "services/view_manager/view_manager_init_service_context.h"
16 16
17 namespace mojo { 17 namespace mojo {
18 18
19 class Application; 19 class Application;
20 20
21 namespace shell { 21 namespace shell {
22 22
23 // ApplicationLoader responsible for creating connections to the ViewManager. 23 // ApplicationLoader responsible for creating connections to the ViewManager.
24 class ViewManagerLoader : public ApplicationLoader, 24 class ViewManagerLoader : public ApplicationLoader,
25 public ApplicationDelegate, 25 public ApplicationDelegate,
(...skipping 22 matching lines...) Expand all
48 ScopedVector<Application> apps_; 48 ScopedVector<Application> apps_;
49 service::ViewManagerInitServiceContext context_; 49 service::ViewManagerInitServiceContext context_;
50 50
51 DISALLOW_COPY_AND_ASSIGN(ViewManagerLoader); 51 DISALLOW_COPY_AND_ASSIGN(ViewManagerLoader);
52 }; 52 };
53 53
54 } // namespace shell 54 } // namespace shell
55 } // namespace mojo 55 } // namespace mojo
56 56
57 #endif // MOJO_SHELL_VIEW_MANAGER_LOADER_H_ 57 #endif // MOJO_SHELL_VIEW_MANAGER_LOADER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698