| 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_EXAMPLE_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef MOJO_SERVICES_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ |
| 6 #define MOJO_EXAMPLE_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ | 6 #define MOJO_SERVICES_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "base/threading/thread_local_storage.h" | 9 #include "base/threading/thread_local_storage.h" |
| 10 #include "base/timer/timer.h" | 10 #include "base/timer/timer.h" |
| 11 #include "mojo/examples/html_viewer/webmimeregistry_impl.h" | 11 #include "mojo/services/html_viewer/webmimeregistry_impl.h" |
| 12 #include "mojo/examples/html_viewer/webthemeengine_impl.h" | 12 #include "mojo/services/html_viewer/webthemeengine_impl.h" |
| 13 #include "mojo/services/public/interfaces/network/network_service.mojom.h" | 13 #include "mojo/services/public/interfaces/network/network_service.mojom.h" |
| 14 #include "third_party/WebKit/public/platform/Platform.h" | 14 #include "third_party/WebKit/public/platform/Platform.h" |
| 15 #include "third_party/WebKit/public/platform/WebScrollbarBehavior.h" | 15 #include "third_party/WebKit/public/platform/WebScrollbarBehavior.h" |
| 16 | 16 |
| 17 namespace mojo { | 17 namespace mojo { |
| 18 class ApplicationImpl; | 18 class ApplicationImpl; |
| 19 | 19 |
| 20 namespace examples { | 20 namespace examples { |
| 21 | 21 |
| 22 class BlinkPlatformImpl : public blink::Platform { | 22 class BlinkPlatformImpl : public blink::Platform { |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 int shared_timer_suspended_; // counter | 71 int shared_timer_suspended_; // counter |
| 72 base::ThreadLocalStorage::Slot current_thread_slot_; | 72 base::ThreadLocalStorage::Slot current_thread_slot_; |
| 73 WebThemeEngineImpl theme_engine_; | 73 WebThemeEngineImpl theme_engine_; |
| 74 WebMimeRegistryImpl mime_registry_; | 74 WebMimeRegistryImpl mime_registry_; |
| 75 blink::WebScrollbarBehavior scrollbar_behavior_; | 75 blink::WebScrollbarBehavior scrollbar_behavior_; |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 } // namespace examples | 78 } // namespace examples |
| 79 } // namespace mojo | 79 } // namespace mojo |
| 80 | 80 |
| 81 #endif // MOJO_EXAMPLE_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ | 81 #endif // MOJO_SERVICES_HTML_VIEWER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |