Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: content/child/blink_platform_impl.h

Issue 1970693002: Use mojo for Chrome Loading, Part 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ 5 #ifndef CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_
6 #define CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ 6 #define CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/containers/scoped_ptr_hash_map.h" 12 #include "base/containers/scoped_ptr_hash_map.h"
13 #include "base/threading/thread_local_storage.h" 13 #include "base/threading/thread_local_storage.h"
14 #include "base/timer/timer.h" 14 #include "base/timer/timer.h"
15 #include "base/trace_event/trace_event.h" 15 #include "base/trace_event/trace_event.h"
16 #include "build/build_config.h" 16 #include "build/build_config.h"
17 #include "components/webcrypto/webcrypto_impl.h" 17 #include "components/webcrypto/webcrypto_impl.h"
18 #include "content/child/webfallbackthemeengine_impl.h" 18 #include "content/child/webfallbackthemeengine_impl.h"
19 #include "content/common/content_export.h" 19 #include "content/common/content_export.h"
20 #include "content/common/url_loader_factory.mojom.h"
20 #include "third_party/WebKit/public/platform/Platform.h" 21 #include "third_party/WebKit/public/platform/Platform.h"
21 #include "third_party/WebKit/public/platform/WebGestureDevice.h" 22 #include "third_party/WebKit/public/platform/WebGestureDevice.h"
22 #include "third_party/WebKit/public/platform/WebURLError.h" 23 #include "third_party/WebKit/public/platform/WebURLError.h"
23 #include "ui/base/layout.h" 24 #include "ui/base/layout.h"
24 25
25 #if defined(USE_DEFAULT_RENDER_THEME) 26 #if defined(USE_DEFAULT_RENDER_THEME)
26 #include "content/child/webthemeengine_impl_default.h" 27 #include "content/child/webthemeengine_impl_default.h"
27 #elif defined(OS_WIN) 28 #elif defined(OS_WIN)
28 #include "content/child/webthemeengine_impl_win.h" 29 #include "content/child/webthemeengine_impl_win.h"
29 #elif defined(OS_MACOSX) 30 #elif defined(OS_MACOSX)
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 std::unique_ptr<TraceLogObserverAdapter>> 155 std::unique_ptr<TraceLogObserverAdapter>>
155 trace_log_observers_; 156 trace_log_observers_;
156 157
157 scoped_refptr<ThreadSafeSender> thread_safe_sender_; 158 scoped_refptr<ThreadSafeSender> thread_safe_sender_;
158 scoped_refptr<NotificationDispatcher> notification_dispatcher_; 159 scoped_refptr<NotificationDispatcher> notification_dispatcher_;
159 scoped_refptr<PushDispatcher> push_dispatcher_; 160 scoped_refptr<PushDispatcher> push_dispatcher_;
160 std::unique_ptr<PermissionDispatcher> permission_client_; 161 std::unique_ptr<PermissionDispatcher> permission_client_;
161 std::unique_ptr<BackgroundSyncProvider> main_thread_sync_provider_; 162 std::unique_ptr<BackgroundSyncProvider> main_thread_sync_provider_;
162 163
163 scheduler::WebThreadBase* compositor_thread_; 164 scheduler::WebThreadBase* compositor_thread_;
165
166 mojom::URLLoaderFactoryPtr url_loader_factory_;
kinuko 2016/05/20 09:38:51 Do we need this on this class?
yhirano 2016/05/20 11:32:54 No, deleted
164 }; 167 };
165 168
166 } // namespace content 169 } // namespace content
167 170
168 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ 171 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698