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

Side by Side Diff: content/browser/plugin_data_remover_impl.cc

Issue 10699043: Move Pepper files in renderer_host to new subdir. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/browser/ppapi_plugin_process_host.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/browser/plugin_data_remover_impl.h" 5 #include "content/browser/plugin_data_remover_impl.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/metrics/histogram.h" 8 #include "base/metrics/histogram.h"
9 #include "base/sequenced_task_runner_helpers.h" 9 #include "base/sequenced_task_runner_helpers.h"
10 #include "base/synchronization/waitable_event.h" 10 #include "base/synchronization/waitable_event.h"
11 #include "base/utf_string_conversions.h" 11 #include "base/utf_string_conversions.h"
12 #include "base/version.h" 12 #include "base/version.h"
13 #include "content/browser/plugin_process_host.h" 13 #include "content/browser/plugin_process_host.h"
14 #include "content/browser/plugin_service_impl.h" 14 #include "content/browser/plugin_service_impl.h"
15 #include "content/browser/renderer_host/pepper_file_message_filter.h" 15 #include "content/browser/renderer_host/pepper/pepper_file_message_filter.h"
16 #include "content/common/child_process_host_impl.h" 16 #include "content/common/child_process_host_impl.h"
17 #include "content/common/plugin_messages.h" 17 #include "content/common/plugin_messages.h"
18 #include "content/public/browser/browser_context.h" 18 #include "content/public/browser/browser_context.h"
19 #include "content/public/browser/browser_thread.h" 19 #include "content/public/browser/browser_thread.h"
20 #include "content/public/common/pepper_plugin_info.h" 20 #include "content/public/common/pepper_plugin_info.h"
21 #include "ppapi/proxy/ppapi_messages.h" 21 #include "ppapi/proxy/ppapi_messages.h"
22 #include "webkit/plugins/npapi/plugin_group.h" 22 #include "webkit/plugins/npapi/plugin_group.h"
23 23
24 namespace content { 24 namespace content {
25 25
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 296
297 base::WaitableEvent* PluginDataRemoverImpl::StartRemoving( 297 base::WaitableEvent* PluginDataRemoverImpl::StartRemoving(
298 base::Time begin_time) { 298 base::Time begin_time) {
299 DCHECK(!context_.get()); 299 DCHECK(!context_.get());
300 context_ = new Context(begin_time, browser_context_); 300 context_ = new Context(begin_time, browser_context_);
301 context_->Init(mime_type_); 301 context_->Init(mime_type_);
302 return context_->event(); 302 return context_->event();
303 } 303 }
304 304
305 } // namespace content 305 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/browser/ppapi_plugin_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698