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

Unified Diff: content/browser/plugin_private_storage_helper.h

Issue 1979733002: Add ability to clear content licenses (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: seperate file Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/plugin_private_storage_helper.h
diff --git a/content/browser/plugin_private_storage_helper.h b/content/browser/plugin_private_storage_helper.h
new file mode 100644
index 0000000000000000000000000000000000000000..d23dba3763da0cbb158ec26378200541fae5330f
--- /dev/null
+++ b/content/browser/plugin_private_storage_helper.h
@@ -0,0 +1,37 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_BROWSER_PLUGIN_PRIVATE_STORAGE_HELPER_H_
+#define CONTENT_BROWSER_PLUGIN_PRIVATE_STORAGE_HELPER_H_
+
+#if !defined(ENABLE_PLUGINS)
+#error This file should only be included when plugins are enabled.
+#endif
+
+#include "base/callback_forward.h"
+#include "base/memory/ref_counted.h"
+#include "base/time/time.h"
+#include "url/gurl.h"
+
+namespace storage {
+class FileSystemContext;
+}
+
+namespace content {
+
+// Clear the plugin private filesystem data in |filesystem_context| for
+// |storage_origin| if any file has a last modified time between |begin|
+// and |end|. If |storage_origin| is not specified, then all available
+// origins are checked. |callback| is called when the operation is complete.
xhwang 2016/06/02 23:51:45 s/checked/cleared
jrummell 2016/06/08 23:44:08 All origins are checked for file in the required t
+// This must be called on the file task runner.
+void ClearPluginPrivateDataOnFileTaskRunner(
+ scoped_refptr<storage::FileSystemContext> filesystem_context,
+ const GURL& storage_origin,
+ const base::Time begin,
+ const base::Time end,
+ const base::Closure& callback);
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_PLUGIN_PRIVATE_STORAGE_HELPER_H_
« no previous file with comments | « no previous file | content/browser/plugin_private_storage_helper.cc » ('j') | content/browser/storage_partition_impl_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698