| 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 COMPONENTS_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef COMPONENTS_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ |
| 6 #define COMPONENTS_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ | 6 #define COMPONENTS_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 #include <stdint.h> |
| 10 |
| 11 #include "base/macros.h" |
| 8 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/threading/thread_local_storage.h" | 13 #include "base/threading/thread_local_storage.h" |
| 10 #include "base/timer/timer.h" | 14 #include "base/timer/timer.h" |
| 11 #include "cc/blink/web_compositor_support_impl.h" | 15 #include "cc/blink/web_compositor_support_impl.h" |
| 12 #include "components/html_viewer/mock_web_blob_registry_impl.h" | 16 #include "components/html_viewer/mock_web_blob_registry_impl.h" |
| 13 #include "components/html_viewer/web_mime_registry_impl.h" | 17 #include "components/html_viewer/web_mime_registry_impl.h" |
| 14 #include "components/html_viewer/web_notification_manager_impl.h" | 18 #include "components/html_viewer/web_notification_manager_impl.h" |
| 15 #include "components/html_viewer/web_theme_engine_impl.h" | 19 #include "components/html_viewer/web_theme_engine_impl.h" |
| 16 #include "components/webcrypto/webcrypto_impl.h" | 20 #include "components/webcrypto/webcrypto_impl.h" |
| 17 #include "mojo/services/network/public/interfaces/url_loader_factory.mojom.h" | 21 #include "mojo/services/network/public/interfaces/url_loader_factory.mojom.h" |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 MockWebBlobRegistryImpl blob_registry_; | 121 MockWebBlobRegistryImpl blob_registry_; |
| 118 scoped_ptr<WebCookieJarImpl> cookie_jar_; | 122 scoped_ptr<WebCookieJarImpl> cookie_jar_; |
| 119 scoped_ptr<WebClipboardImpl> clipboard_; | 123 scoped_ptr<WebClipboardImpl> clipboard_; |
| 120 | 124 |
| 121 DISALLOW_COPY_AND_ASSIGN(BlinkPlatformImpl); | 125 DISALLOW_COPY_AND_ASSIGN(BlinkPlatformImpl); |
| 122 }; | 126 }; |
| 123 | 127 |
| 124 } // namespace html_viewer | 128 } // namespace html_viewer |
| 125 | 129 |
| 126 #endif // COMPONENTS_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ | 130 #endif // COMPONENTS_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |