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

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

Issue 265793015: Mojo: Replace RemotePtr with InterfacePtr and InterfaceImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 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 | Annotate | Revision Log
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_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/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/memory/scoped_vector.h" 9 #include "base/memory/scoped_vector.h"
10 #include "mojo/service_manager/service_loader.h" 10 #include "mojo/service_manager/service_loader.h"
(...skipping 12 matching lines...) Expand all
23 // ServiceLoader responsible for creating connections to the ViewManager. 23 // ServiceLoader responsible for creating connections to the ViewManager.
24 class ViewManagerLoader : public ServiceLoader { 24 class ViewManagerLoader : public ServiceLoader {
25 public: 25 public:
26 ViewManagerLoader(); 26 ViewManagerLoader();
27 virtual ~ViewManagerLoader(); 27 virtual ~ViewManagerLoader();
28 28
29 private: 29 private:
30 // ServiceLoader overrides: 30 // ServiceLoader overrides:
31 virtual void LoadService(ServiceManager* manager, 31 virtual void LoadService(ServiceManager* manager,
32 const GURL& url, 32 const GURL& url,
33 ScopedShellHandle shell_handle) OVERRIDE; 33 ScopedMessagePipeHandle shell_handle) OVERRIDE;
34 virtual void OnServiceError(ServiceManager* manager, 34 virtual void OnServiceError(ServiceManager* manager,
35 const GURL& url) OVERRIDE; 35 const GURL& url) OVERRIDE;
36 36
37 scoped_ptr<services::view_manager::RootNodeManager> root_node_manager_; 37 scoped_ptr<services::view_manager::RootNodeManager> root_node_manager_;
38 ScopedVector<Application> apps_; 38 ScopedVector<Application> apps_;
39 39
40 DISALLOW_COPY_AND_ASSIGN(ViewManagerLoader); 40 DISALLOW_COPY_AND_ASSIGN(ViewManagerLoader);
41 }; 41 };
42 42
43 } // namespace shell 43 } // namespace shell
44 } // namespace mojo 44 } // namespace mojo
45 45
46 #endif // MOJO_SHELL_VIEW_MANAGER_LOADER_H_ 46 #endif // MOJO_SHELL_VIEW_MANAGER_LOADER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698