OLD | NEW |
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" |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 // Overriden from mojo::ViewObserver: | 55 // Overriden from mojo::ViewObserver: |
56 void OnViewDestroyed(mojo::View* view) override; | 56 void OnViewDestroyed(mojo::View* view) override; |
57 void OnViewBoundsChanged(mojo::View* view, | 57 void OnViewBoundsChanged(mojo::View* view, |
58 const mojo::Rect& old_bounds, | 58 const mojo::Rect& old_bounds, |
59 const mojo::Rect& new_bounds) override; | 59 const mojo::Rect& new_bounds) override; |
60 | 60 |
61 // Overridden from InterfaceFactory<Debugger>: | 61 // Overridden from InterfaceFactory<Debugger>: |
62 void Create(mojo::ApplicationConnection* connection, | 62 void Create(mojo::ApplicationConnection* connection, |
63 mojo::InterfaceRequest<Debugger> request) override; | 63 mojo::InterfaceRequest<Debugger> request) override; |
64 | 64 |
65 scoped_ptr<mojo::WindowManagerApp> window_manager_app_; | 65 scoped_ptr<window_manager::WindowManagerApp> window_manager_app_; |
66 | 66 |
67 mojo::ViewManager* view_manager_; | 67 mojo::ViewManager* view_manager_; |
68 mojo::View* root_; | 68 mojo::View* root_; |
69 mojo::View* content_; | 69 mojo::View* content_; |
70 std::string pending_url_; | 70 std::string pending_url_; |
71 | 71 |
72 scoped_ptr<mojo::ServiceProvider> viewer_services_; | 72 scoped_ptr<mojo::ServiceProvider> viewer_services_; |
73 | 73 |
74 NavigatorHostFactory navigator_host_factory_; | 74 NavigatorHostFactory navigator_host_factory_; |
75 | 75 |
76 base::WeakPtrFactory<SkyDebugger> weak_factory_; | 76 base::WeakPtrFactory<SkyDebugger> weak_factory_; |
77 | 77 |
78 DISALLOW_COPY_AND_ASSIGN(SkyDebugger); | 78 DISALLOW_COPY_AND_ASSIGN(SkyDebugger); |
79 }; | 79 }; |
80 | 80 |
81 } // namespace debugger | 81 } // namespace debugger |
82 } // namespace sky | 82 } // namespace sky |
OLD | NEW |