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

Side by Side Diff: content/browser/renderer_host/render_message_filter.h

Issue 2426423004: Remove some linked_ptr from /content (Closed)
Patch Set: MakeUnique Created 4 years, 2 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 (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_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <list> 11 #include <list>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/files/file_path.h" 15 #include "base/files/file_path.h"
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/memory/linked_ptr.h"
18 #include "base/memory/shared_memory.h" 17 #include "base/memory/shared_memory.h"
19 #include "base/memory/weak_ptr.h" 18 #include "base/memory/weak_ptr.h"
20 #include "base/sequenced_task_runner_helpers.h" 19 #include "base/sequenced_task_runner_helpers.h"
21 #include "base/strings/string16.h" 20 #include "base/strings/string16.h"
22 #include "build/build_config.h" 21 #include "build/build_config.h"
23 #include "cc/resources/shared_bitmap_manager.h" 22 #include "cc/resources/shared_bitmap_manager.h"
24 #include "content/common/cache_storage/cache_storage_types.h" 23 #include "content/common/cache_storage/cache_storage_types.h"
25 #include "content/common/host_discardable_shared_memory_manager.h" 24 #include "content/common/host_discardable_shared_memory_manager.h"
26 #include "content/common/host_shared_bitmap_manager.h" 25 #include "content/common/host_shared_bitmap_manager.h"
27 #include "content/common/render_message_filter.mojom.h" 26 #include "content/common/render_message_filter.mojom.h"
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 CacheStorageContextImpl* cache_storage_context_; 249 CacheStorageContextImpl* cache_storage_context_;
251 250
252 base::WeakPtrFactory<RenderMessageFilter> weak_ptr_factory_; 251 base::WeakPtrFactory<RenderMessageFilter> weak_ptr_factory_;
253 252
254 DISALLOW_COPY_AND_ASSIGN(RenderMessageFilter); 253 DISALLOW_COPY_AND_ASSIGN(RenderMessageFilter);
255 }; 254 };
256 255
257 } // namespace content 256 } // namespace content
258 257
259 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ 258 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698