| 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 #ifndef MOJO_SERVICES_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef COMPONENTS_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ |
| 6 #define MOJO_SERVICES_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ | 6 #define COMPONENTS_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/threading/thread_local_storage.h" | 10 #include "base/threading/thread_local_storage.h" |
| 11 #include "base/timer/timer.h" | 11 #include "base/timer/timer.h" |
| 12 #include "cc/blink/web_compositor_support_impl.h" | 12 #include "cc/blink/web_compositor_support_impl.h" |
| 13 #include "components/html_viewer/blink_resource_map.h" |
| 14 #include "components/html_viewer/mock_web_blob_registry_impl.h" |
| 15 #include "components/html_viewer/web_mime_registry_impl.h" |
| 16 #include "components/html_viewer/web_notification_manager_impl.h" |
| 17 #include "components/html_viewer/web_scheduler_impl.h" |
| 18 #include "components/html_viewer/web_theme_engine_impl.h" |
| 13 #include "components/webcrypto/webcrypto_impl.h" | 19 #include "components/webcrypto/webcrypto_impl.h" |
| 14 #include "mojo/services/html_viewer/blink_resource_map.h" | |
| 15 #include "mojo/services/html_viewer/mock_web_blob_registry_impl.h" | |
| 16 #include "mojo/services/html_viewer/web_mime_registry_impl.h" | |
| 17 #include "mojo/services/html_viewer/web_notification_manager_impl.h" | |
| 18 #include "mojo/services/html_viewer/web_scheduler_impl.h" | |
| 19 #include "mojo/services/html_viewer/web_theme_engine_impl.h" | |
| 20 #include "mojo/services/network/public/interfaces/network_service.mojom.h" | 20 #include "mojo/services/network/public/interfaces/network_service.mojom.h" |
| 21 #include "third_party/WebKit/public/platform/Platform.h" | 21 #include "third_party/WebKit/public/platform/Platform.h" |
| 22 #include "third_party/WebKit/public/platform/WebScrollbarBehavior.h" | 22 #include "third_party/WebKit/public/platform/WebScrollbarBehavior.h" |
| 23 | 23 |
| 24 namespace mojo { | 24 namespace mojo { |
| 25 class ApplicationImpl; | 25 class ApplicationImpl; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace html_viewer { | 28 namespace html_viewer { |
| 29 | 29 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 mojo::NetworkServicePtr network_service_; | 110 mojo::NetworkServicePtr network_service_; |
| 111 MockWebBlobRegistryImpl blob_registry_; | 111 MockWebBlobRegistryImpl blob_registry_; |
| 112 scoped_ptr<WebCookieJarImpl> cookie_jar_; | 112 scoped_ptr<WebCookieJarImpl> cookie_jar_; |
| 113 scoped_ptr<WebClipboardImpl> clipboard_; | 113 scoped_ptr<WebClipboardImpl> clipboard_; |
| 114 | 114 |
| 115 DISALLOW_COPY_AND_ASSIGN(BlinkPlatformImpl); | 115 DISALLOW_COPY_AND_ASSIGN(BlinkPlatformImpl); |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 } // namespace html_viewer | 118 } // namespace html_viewer |
| 119 | 119 |
| 120 #endif // MOJO_SERVICES_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ | 120 #endif // COMPONENTS_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |