| 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 "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/message_loop/message_loop.h" | |
| 10 #include "base/threading/thread_local_storage.h" | 9 #include "base/threading/thread_local_storage.h" |
| 11 #include "base/timer/timer.h" | 10 #include "base/timer/timer.h" |
| 12 #include "cc/blink/web_compositor_support_impl.h" | 11 #include "cc/blink/web_compositor_support_impl.h" |
| 13 #include "components/html_viewer/blink_resource_map.h" | 12 #include "components/html_viewer/blink_resource_map.h" |
| 14 #include "components/html_viewer/mock_web_blob_registry_impl.h" | 13 #include "components/html_viewer/mock_web_blob_registry_impl.h" |
| 15 #include "components/html_viewer/web_mime_registry_impl.h" | 14 #include "components/html_viewer/web_mime_registry_impl.h" |
| 16 #include "components/html_viewer/web_notification_manager_impl.h" | 15 #include "components/html_viewer/web_notification_manager_impl.h" |
| 17 #include "components/html_viewer/web_scheduler_impl.h" | 16 #include "components/html_viewer/web_scheduler_impl.h" |
| 18 #include "components/html_viewer/web_theme_engine_impl.h" | 17 #include "components/html_viewer/web_theme_engine_impl.h" |
| 19 #include "components/webcrypto/webcrypto_impl.h" | 18 #include "components/webcrypto/webcrypto_impl.h" |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 MockWebBlobRegistryImpl blob_registry_; | 108 MockWebBlobRegistryImpl blob_registry_; |
| 110 scoped_ptr<WebCookieJarImpl> cookie_jar_; | 109 scoped_ptr<WebCookieJarImpl> cookie_jar_; |
| 111 scoped_ptr<WebClipboardImpl> clipboard_; | 110 scoped_ptr<WebClipboardImpl> clipboard_; |
| 112 | 111 |
| 113 DISALLOW_COPY_AND_ASSIGN(BlinkPlatformImpl); | 112 DISALLOW_COPY_AND_ASSIGN(BlinkPlatformImpl); |
| 114 }; | 113 }; |
| 115 | 114 |
| 116 } // namespace html_viewer | 115 } // namespace html_viewer |
| 117 | 116 |
| 118 #endif // COMPONENTS_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ | 117 #endif // COMPONENTS_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |