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 "components/html_viewer/html_frame.h" | 5 #include "components/html_viewer/html_frame.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <limits> | 8 #include <limits> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 #include "components/html_viewer/html_frame_properties.h" | 25 #include "components/html_viewer/html_frame_properties.h" |
26 #include "components/html_viewer/html_frame_tree_manager.h" | 26 #include "components/html_viewer/html_frame_tree_manager.h" |
27 #include "components/html_viewer/html_widget.h" | 27 #include "components/html_viewer/html_widget.h" |
28 #include "components/html_viewer/media_factory.h" | 28 #include "components/html_viewer/media_factory.h" |
29 #include "components/html_viewer/stats_collection_controller.h" | 29 #include "components/html_viewer/stats_collection_controller.h" |
30 #include "components/html_viewer/touch_handler.h" | 30 #include "components/html_viewer/touch_handler.h" |
31 #include "components/html_viewer/web_layer_impl.h" | 31 #include "components/html_viewer/web_layer_impl.h" |
32 #include "components/html_viewer/web_layer_tree_view_impl.h" | 32 #include "components/html_viewer/web_layer_tree_view_impl.h" |
33 #include "components/html_viewer/web_storage_namespace_impl.h" | 33 #include "components/html_viewer/web_storage_namespace_impl.h" |
34 #include "components/html_viewer/web_url_loader_impl.h" | 34 #include "components/html_viewer/web_url_loader_impl.h" |
35 #include "components/view_manager/ids.h" | 35 #include "components/mus/ids.h" |
36 #include "components/view_manager/public/cpp/scoped_view_ptr.h" | 36 #include "components/mus/public/cpp/scoped_view_ptr.h" |
37 #include "components/view_manager/public/cpp/view.h" | 37 #include "components/mus/public/cpp/view.h" |
38 #include "components/view_manager/public/cpp/view_tree_connection.h" | 38 #include "components/mus/public/cpp/view_tree_connection.h" |
39 #include "mojo/application/public/cpp/application_impl.h" | 39 #include "mojo/application/public/cpp/application_impl.h" |
40 #include "mojo/application/public/cpp/connect.h" | 40 #include "mojo/application/public/cpp/connect.h" |
41 #include "mojo/application/public/interfaces/shell.mojom.h" | 41 #include "mojo/application/public/interfaces/shell.mojom.h" |
42 #include "mojo/common/common_type_converters.h" | 42 #include "mojo/common/common_type_converters.h" |
43 #include "mojo/converters/geometry/geometry_type_converters.h" | 43 #include "mojo/converters/geometry/geometry_type_converters.h" |
44 #include "skia/ext/refptr.h" | 44 #include "skia/ext/refptr.h" |
45 #include "third_party/WebKit/public/platform/Platform.h" | 45 #include "third_party/WebKit/public/platform/Platform.h" |
46 #include "third_party/WebKit/public/platform/WebHTTPHeaderVisitor.h" | 46 #include "third_party/WebKit/public/platform/WebHTTPHeaderVisitor.h" |
47 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" | 47 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" |
48 #include "third_party/WebKit/public/platform/WebSize.h" | 48 #include "third_party/WebKit/public/platform/WebSize.h" |
(...skipping 764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
813 | 813 |
814 void HTMLFrame::reload(bool ignore_cache, bool is_client_redirect) { | 814 void HTMLFrame::reload(bool ignore_cache, bool is_client_redirect) { |
815 NOTIMPLEMENTED(); | 815 NOTIMPLEMENTED(); |
816 } | 816 } |
817 | 817 |
818 void HTMLFrame::forwardInputEvent(const blink::WebInputEvent* event) { | 818 void HTMLFrame::forwardInputEvent(const blink::WebInputEvent* event) { |
819 NOTIMPLEMENTED(); | 819 NOTIMPLEMENTED(); |
820 } | 820 } |
821 | 821 |
822 } // namespace mojo | 822 } // namespace mojo |
OLD | NEW |