| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "mandoline/ui/phone_ui/phone_browser_application_delegate.h" | 5 #include "mandoline/ui/phone_ui/phone_browser_application_delegate.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "components/view_manager/public/cpp/view.h" | 8 #include "components/view_manager/public/cpp/view.h" |
| 9 #include "components/view_manager/public/cpp/view_tree_connection.h" | 9 #include "components/view_manager/public/cpp/view_tree_connection.h" |
| 10 #include "components/view_manager/public/cpp/view_tree_host_factory.h" | 10 #include "components/view_manager/public/cpp/view_tree_host_factory.h" |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 } | 108 } |
| 109 | 109 |
| 110 void PhoneBrowserApplicationDelegate::LoadingStateChanged(bool is_loading) { | 110 void PhoneBrowserApplicationDelegate::LoadingStateChanged(bool is_loading) { |
| 111 // ... | 111 // ... |
| 112 } | 112 } |
| 113 | 113 |
| 114 void PhoneBrowserApplicationDelegate::ProgressChanged(double progress) { | 114 void PhoneBrowserApplicationDelegate::ProgressChanged(double progress) { |
| 115 // ... | 115 // ... |
| 116 } | 116 } |
| 117 | 117 |
| 118 |
| 119 void PhoneBrowserApplicationDelegate::BackForwardChanged( |
| 120 web_view::mojom::ButtonState back_button, |
| 121 web_view::mojom::ButtonState forward_button) { |
| 122 // ... |
| 123 } |
| 124 |
| 118 void PhoneBrowserApplicationDelegate::TitleChanged(const mojo::String& title) { | 125 void PhoneBrowserApplicationDelegate::TitleChanged(const mojo::String& title) { |
| 119 // ... | 126 // ... |
| 120 } | 127 } |
| 121 | 128 |
| 122 //////////////////////////////////////////////////////////////////////////////// | 129 //////////////////////////////////////////////////////////////////////////////// |
| 123 // PhoneBrowserApplicationDelegate, | 130 // PhoneBrowserApplicationDelegate, |
| 124 // mojo::InterfaceFactory<LaunchHandler> implementation: | 131 // mojo::InterfaceFactory<LaunchHandler> implementation: |
| 125 | 132 |
| 126 void PhoneBrowserApplicationDelegate::Create( | 133 void PhoneBrowserApplicationDelegate::Create( |
| 127 mojo::ApplicationConnection* connection, | 134 mojo::ApplicationConnection* connection, |
| 128 mojo::InterfaceRequest<LaunchHandler> request) { | 135 mojo::InterfaceRequest<LaunchHandler> request) { |
| 129 launch_handler_bindings_.AddBinding(this, request.Pass()); | 136 launch_handler_bindings_.AddBinding(this, request.Pass()); |
| 130 } | 137 } |
| 131 | 138 |
| 132 } // namespace mandoline | 139 } // namespace mandoline |
| OLD | NEW |