OLD | NEW |
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 <limits> | 7 #include <limits> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
11 #include "base/sequenced_task_runner_helpers.h" | 11 #include "base/sequenced_task_runner_helpers.h" |
12 #include "base/synchronization/waitable_event.h" | 12 #include "base/synchronization/waitable_event.h" |
13 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
14 #include "base/version.h" | 14 #include "base/version.h" |
15 #include "content/browser/plugin_process_host.h" | 15 #include "content/browser/plugin_process_host.h" |
16 #include "content/browser/plugin_service_impl.h" | 16 #include "content/browser/plugin_service_impl.h" |
17 #include "content/browser/renderer_host/pepper/pepper_file_message_filter.h" | 17 #include "content/browser/renderer_host/pepper/pepper_flash_file_host.h" |
18 #include "content/common/child_process_host_impl.h" | 18 #include "content/common/child_process_host_impl.h" |
19 #include "content/common/plugin_messages.h" | 19 #include "content/common/plugin_messages.h" |
20 #include "content/public/browser/browser_context.h" | 20 #include "content/public/browser/browser_context.h" |
21 #include "content/public/browser/browser_thread.h" | 21 #include "content/public/browser/browser_thread.h" |
22 #include "content/public/common/pepper_plugin_info.h" | 22 #include "content/public/common/pepper_plugin_info.h" |
23 #include "ppapi/proxy/ppapi_messages.h" | 23 #include "ppapi/proxy/ppapi_messages.h" |
24 #include "webkit/plugins/npapi/plugin_utils.h" | 24 #include "webkit/plugins/npapi/plugin_utils.h" |
25 #include "webkit/plugins/plugin_constants.h" | 25 #include "webkit/plugins/plugin_constants.h" |
26 | 26 |
27 namespace content { | 27 namespace content { |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 | 195 |
196 base::WaitableEvent* event() { return event_.get(); } | 196 base::WaitableEvent* event() { return event_.get(); } |
197 | 197 |
198 private: | 198 private: |
199 friend struct BrowserThread::DeleteOnThread<BrowserThread::IO>; | 199 friend struct BrowserThread::DeleteOnThread<BrowserThread::IO>; |
200 friend class base::DeleteHelper<Context>; | 200 friend class base::DeleteHelper<Context>; |
201 virtual ~Context() {} | 201 virtual ~Context() {} |
202 | 202 |
203 IPC::Message* CreatePpapiClearSiteDataMsg(uint64 max_age) { | 203 IPC::Message* CreatePpapiClearSiteDataMsg(uint64 max_age) { |
204 FilePath profile_path = | 204 FilePath profile_path = |
205 PepperFileMessageFilter::GetDataDirName(browser_context_path_); | 205 PepperFlashFileHost::GetDataDirName(browser_context_path_); |
206 // TODO(vtl): This "duplicates" logic in webkit/plugins/ppapi/file_path.cc | 206 // TODO(vtl): This "duplicates" logic in webkit/plugins/ppapi/file_path.cc |
207 // (which prepends the plugin name to the relative part of the path | 207 // (which prepends the plugin name to the relative part of the path |
208 // instead, with the absolute, profile-dependent part being enforced by | 208 // instead, with the absolute, profile-dependent part being enforced by |
209 // the browser). | 209 // the browser). |
210 #if defined(OS_WIN) | 210 #if defined(OS_WIN) |
211 FilePath plugin_data_path = | 211 FilePath plugin_data_path = |
212 profile_path.Append(FilePath(UTF8ToUTF16(plugin_name_))); | 212 profile_path.Append(FilePath(UTF8ToUTF16(plugin_name_))); |
213 #else | 213 #else |
214 FilePath plugin_data_path = profile_path.Append(FilePath(plugin_name_)); | 214 FilePath plugin_data_path = profile_path.Append(FilePath(plugin_name_)); |
215 #endif // defined(OS_WIN) | 215 #endif // defined(OS_WIN) |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 | 308 |
309 base::WaitableEvent* PluginDataRemoverImpl::StartRemoving( | 309 base::WaitableEvent* PluginDataRemoverImpl::StartRemoving( |
310 base::Time begin_time) { | 310 base::Time begin_time) { |
311 DCHECK(!context_.get()); | 311 DCHECK(!context_.get()); |
312 context_ = new Context(begin_time, browser_context_); | 312 context_ = new Context(begin_time, browser_context_); |
313 context_->Init(mime_type_); | 313 context_->Init(mime_type_); |
314 return context_->event(); | 314 return context_->event(); |
315 } | 315 } |
316 | 316 |
317 } // namespace content | 317 } // namespace content |
OLD | NEW |