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

Side by Side Diff: content/renderer/renderer_blink_platform_impl.h

Issue 2496653002: Part 2 of base::IDMap refactor to eliminate IDMapOwnPointer/IDMapExternalPointer modes (Closed)
Patch Set: typedefs => using statements, update comments in base/id_map.h Created 4 years 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 scoped_refptr<ThreadSafeSender> thread_safe_sender_; 283 scoped_refptr<ThreadSafeSender> thread_safe_sender_;
284 scoped_refptr<QuotaMessageFilter> quota_message_filter_; 284 scoped_refptr<QuotaMessageFilter> quota_message_filter_;
285 ChildSharedBitmapManager* shared_bitmap_manager_; 285 ChildSharedBitmapManager* shared_bitmap_manager_;
286 286
287 std::unique_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; 287 std::unique_ptr<WebDatabaseObserverImpl> web_database_observer_impl_;
288 288
289 cc_blink::WebCompositorSupportImpl compositor_support_; 289 cc_blink::WebCompositorSupportImpl compositor_support_;
290 290
291 std::unique_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; 291 std::unique_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_;
292 292
293 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; 293 IDMap<std::unique_ptr<PlatformEventObserverBase>> platform_event_observers_;
294 294
295 blink::scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED 295 blink::scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED
296 TopLevelBlameContext top_level_blame_context_; 296 TopLevelBlameContext top_level_blame_context_;
297 297
298 WebTrialTokenValidatorImpl trial_token_validator_; 298 WebTrialTokenValidatorImpl trial_token_validator_;
299 299
300 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; 300 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_;
301 301
302 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; 302 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_;
303 303
304 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_; 304 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_;
305 305
306 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 306 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
307 }; 307 };
308 308
309 } // namespace content 309 } // namespace content
310 310
311 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 311 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.h ('k') | content/renderer/screen_orientation/screen_orientation_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698