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

Side by Side Diff: content/renderer/render_thread_impl.cc

Issue 1483733002: Remove support for NPObjects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 8 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 #include "content/renderer/render_thread_impl.h" 5 #include "content/renderer/render_thread_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <limits> 8 #include <limits>
9 #include <map> 9 #include <map>
10 #include <utility> 10 #include <utility>
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 #include "content/child/blob_storage/blob_message_filter.h" 52 #include "content/child/blob_storage/blob_message_filter.h"
53 #include "content/child/child_discardable_shared_memory_manager.h" 53 #include "content/child/child_discardable_shared_memory_manager.h"
54 #include "content/child/child_gpu_memory_buffer_manager.h" 54 #include "content/child/child_gpu_memory_buffer_manager.h"
55 #include "content/child/child_histogram_message_filter.h" 55 #include "content/child/child_histogram_message_filter.h"
56 #include "content/child/child_resource_message_filter.h" 56 #include "content/child/child_resource_message_filter.h"
57 #include "content/child/child_shared_bitmap_manager.h" 57 #include "content/child/child_shared_bitmap_manager.h"
58 #include "content/child/content_child_helpers.h" 58 #include "content/child/content_child_helpers.h"
59 #include "content/child/db_message_filter.h" 59 #include "content/child/db_message_filter.h"
60 #include "content/child/indexed_db/indexed_db_dispatcher.h" 60 #include "content/child/indexed_db/indexed_db_dispatcher.h"
61 #include "content/child/indexed_db/indexed_db_message_filter.h" 61 #include "content/child/indexed_db/indexed_db_message_filter.h"
62 #include "content/child/npapi/npobject_util.h"
63 #include "content/child/plugin_messages.h" 62 #include "content/child/plugin_messages.h"
64 #include "content/child/resource_dispatcher.h" 63 #include "content/child/resource_dispatcher.h"
65 #include "content/child/resource_scheduling_filter.h" 64 #include "content/child/resource_scheduling_filter.h"
66 #include "content/child/runtime_features.h" 65 #include "content/child/runtime_features.h"
67 #include "content/child/thread_safe_sender.h" 66 #include "content/child/thread_safe_sender.h"
68 #include "content/child/web_database_observer_impl.h" 67 #include "content/child/web_database_observer_impl.h"
69 #include "content/child/worker_thread_registry.h" 68 #include "content/child/worker_thread_registry.h"
70 #include "content/common/child_process_messages.h" 69 #include "content/common/child_process_messages.h"
71 #include "content/common/content_constants_internal.h" 70 #include "content/common/content_constants_internal.h"
72 #include "content/common/database_messages.h" 71 #include "content/common/database_messages.h"
(...skipping 2106 matching lines...) Expand 10 before | Expand all | Expand 10 after
2179 } 2178 }
2180 2179
2181 void RenderThreadImpl::PendingRenderFrameConnect::OnConnectionError() { 2180 void RenderThreadImpl::PendingRenderFrameConnect::OnConnectionError() {
2182 size_t erased = 2181 size_t erased =
2183 RenderThreadImpl::current()->pending_render_frame_connects_.erase( 2182 RenderThreadImpl::current()->pending_render_frame_connects_.erase(
2184 routing_id_); 2183 routing_id_);
2185 DCHECK_EQ(1u, erased); 2184 DCHECK_EQ(1u, erased);
2186 } 2185 }
2187 2186
2188 } // namespace content 2187 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_webplugin_impl.cc ('k') | content/renderer/renderer_blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698