| 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 "sky/viewer/document_view.h" | 5 #include "sky/viewer/document_view.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/location.h" | 8 #include "base/location.h" |
| 9 #include "base/message_loop/message_loop_proxy.h" | 9 #include "base/message_loop/message_loop_proxy.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "sky/engine/public/platform/WebInputEvent.h" | 27 #include "sky/engine/public/platform/WebInputEvent.h" |
| 28 #include "sky/engine/public/platform/WebScreenInfo.h" | 28 #include "sky/engine/public/platform/WebScreenInfo.h" |
| 29 #include "sky/engine/public/web/Sky.h" | 29 #include "sky/engine/public/web/Sky.h" |
| 30 #include "sky/engine/public/web/WebConsoleMessage.h" | 30 #include "sky/engine/public/web/WebConsoleMessage.h" |
| 31 #include "sky/engine/public/web/WebDocument.h" | 31 #include "sky/engine/public/web/WebDocument.h" |
| 32 #include "sky/engine/public/web/WebElement.h" | 32 #include "sky/engine/public/web/WebElement.h" |
| 33 #include "sky/engine/public/web/WebLocalFrame.h" | 33 #include "sky/engine/public/web/WebLocalFrame.h" |
| 34 #include "sky/engine/public/web/WebScriptSource.h" | 34 #include "sky/engine/public/web/WebScriptSource.h" |
| 35 #include "sky/engine/public/web/WebSettings.h" | 35 #include "sky/engine/public/web/WebSettings.h" |
| 36 #include "sky/engine/public/web/WebView.h" | 36 #include "sky/engine/public/web/WebView.h" |
| 37 #include "sky/services/platform/url_request_types.h" |
| 37 #include "sky/viewer/converters/input_event_types.h" | 38 #include "sky/viewer/converters/input_event_types.h" |
| 38 #include "sky/viewer/converters/url_request_types.h" | |
| 39 #include "sky/viewer/internals.h" | 39 #include "sky/viewer/internals.h" |
| 40 #include "sky/viewer/platform/weburlloader_impl.h" | |
| 41 #include "sky/viewer/runtime_flags.h" | 40 #include "sky/viewer/runtime_flags.h" |
| 42 #include "third_party/skia/include/core/SkCanvas.h" | 41 #include "third_party/skia/include/core/SkCanvas.h" |
| 43 #include "third_party/skia/include/core/SkColor.h" | 42 #include "third_party/skia/include/core/SkColor.h" |
| 44 #include "third_party/skia/include/core/SkDevice.h" | 43 #include "third_party/skia/include/core/SkDevice.h" |
| 45 #include "ui/events/gestures/gesture_recognizer.h" | 44 #include "ui/events/gestures/gesture_recognizer.h" |
| 46 #include "v8/include/v8.h" | 45 #include "v8/include/v8.h" |
| 47 | 46 |
| 48 namespace sky { | 47 namespace sky { |
| 49 namespace { | 48 namespace { |
| 50 | 49 |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 } | 354 } |
| 356 } | 355 } |
| 357 } | 356 } |
| 358 } | 357 } |
| 359 | 358 |
| 360 void DocumentView::StartDebuggerInspectorBackend() { | 359 void DocumentView::StartDebuggerInspectorBackend() { |
| 361 // FIXME: Do we need this for dart? | 360 // FIXME: Do we need this for dart? |
| 362 } | 361 } |
| 363 | 362 |
| 364 } // namespace sky | 363 } // namespace sky |
| OLD | NEW |