| 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 "sky/shell/ui/engine.h" | 5 #include "sky/shell/ui/engine.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/threading/worker_pool.h" | 9 #include "base/threading/worker_pool.h" |
| 10 #include "base/trace_event/trace_event.h" | 10 #include "base/trace_event/trace_event.h" |
| 11 #include "mojo/common/data_pipe_utils.h" | 11 #include "mojo/common/data_pipe_utils.h" |
| 12 #include "mojo/public/cpp/application/connect.h" | 12 #include "mojo/public/cpp/application/connect.h" |
| 13 #include "services/asset_bundle/asset_unpacker_job.h" | 13 #include "services/asset_bundle/asset_unpacker_job.h" |
| 14 #include "sky/engine/public/platform/WebInputEvent.h" | 14 #include "sky/engine/public/platform/WebInputEvent.h" |
| 15 #include "sky/engine/public/platform/sky_display_metrics.h" | 15 #include "sky/engine/public/platform/sky_display_metrics.h" |
| 16 #include "sky/engine/public/platform/sky_display_metrics.h" | 16 #include "sky/engine/public/platform/sky_display_metrics.h" |
| 17 #include "sky/engine/public/web/Sky.h" | 17 #include "sky/engine/public/web/Sky.h" |
| 18 #include "sky/services/platform/platform_impl.h" | |
| 19 #include "sky/shell/dart/dart_library_provider_files.h" | 18 #include "sky/shell/dart/dart_library_provider_files.h" |
| 20 #include "sky/shell/dart/dart_library_provider_network.h" | 19 #include "sky/shell/dart/dart_library_provider_network.h" |
| 21 #include "sky/shell/service_provider.h" | 20 #include "sky/shell/service_provider.h" |
| 22 #include "sky/shell/ui/animator.h" | 21 #include "sky/shell/ui/animator.h" |
| 23 #include "sky/shell/ui/input_event_converter.h" | 22 #include "sky/shell/ui/input_event_converter.h" |
| 24 #include "sky/shell/ui/internals.h" | 23 #include "sky/shell/ui/internals.h" |
| 24 #include "sky/shell/ui/platform_impl.h" |
| 25 #include "third_party/skia/include/core/SkCanvas.h" | 25 #include "third_party/skia/include/core/SkCanvas.h" |
| 26 #include "third_party/skia/include/core/SkPictureRecorder.h" | 26 #include "third_party/skia/include/core/SkPictureRecorder.h" |
| 27 | 27 |
| 28 namespace sky { | 28 namespace sky { |
| 29 namespace shell { | 29 namespace shell { |
| 30 | 30 |
| 31 const char kSnapshotKey[] = "snapshot_blob.bin"; | 31 const char kSnapshotKey[] = "snapshot_blob.bin"; |
| 32 | 32 |
| 33 namespace { | 33 namespace { |
| 34 | 34 |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 | 244 |
| 245 void Engine::DidNavigateLocally(const mojo::String& url) { | 245 void Engine::DidNavigateLocally(const mojo::String& url) { |
| 246 } | 246 } |
| 247 | 247 |
| 248 void Engine::RequestNavigateHistory(int32_t delta) { | 248 void Engine::RequestNavigateHistory(int32_t delta) { |
| 249 NOTIMPLEMENTED(); | 249 NOTIMPLEMENTED(); |
| 250 } | 250 } |
| 251 | 251 |
| 252 } // namespace shell | 252 } // namespace shell |
| 253 } // namespace sky | 253 } // namespace sky |
| OLD | NEW |