| Index: components/previews/previews_opt_out_store.h
|
| diff --git a/components/previews/previews_opt_out_store.h b/components/previews/previews_opt_out_store.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3e31034c3ab3db34af49c16ef6b4595b8dc8dc75
|
| --- /dev/null
|
| +++ b/components/previews/previews_opt_out_store.h
|
| @@ -0,0 +1,63 @@
|
| +// 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 COMPONENTS_PREVIEWS_PREVIEWS_OPT_OUT_STORE_H_
|
| +#define COMPONENTS_PREVIEWS_PREVIEWS_OPT_OUT_STORE_H_
|
| +
|
| +#include <stdint.h>
|
| +
|
| +#include <vector>
|
| +
|
| +#include "base/callback.h"
|
| +#include "components/previews/previews_black_list_item.h"
|
| +
|
| +class GURL;
|
| +
|
| +namespace base {
|
| +class Time;
|
| +}
|
| +
|
| +namespace previews {
|
| +
|
| +enum class PreviewsType {
|
| + NONE = 0,
|
| + OFFLINE = 1,
|
| + LAST = 2,
|
| +};
|
| +
|
| +typedef base::Callback<void(std::unique_ptr<BlackListItemMap>)>
|
| + LoadBlackListCallback;
|
| +
|
| +// PreviewsOptOutStore keeps opt out information for the previews.
|
| +// Ability to create multiple instances of the store as well as behavior of
|
| +// asynchronous operations when the object is being destroyed, before such
|
| +// operation finishes will depend on implementation. It should be possible to
|
| +// issue multiple asynchronous operations in parallel and maintain ordering.
|
| +class PreviewsOptOutStore {
|
| + public:
|
| + PreviewsOptOutStore();
|
| + virtual ~PreviewsOptOutStore();
|
| +
|
| + // Adds a new navigation to the store. |opt_out| is whether the uesr opted out
|
| + // of the preview or navigated away from the page by another way.
|
| + virtual void AddPreviewNavigation(bool opt_out,
|
| + const std::string& host_name,
|
| + PreviewsType type,
|
| + const base::Time& now) = 0;
|
| +
|
| + // Asynchronously loads a map of host names to PreviewsBlackListItem for that
|
| + // host from the store.
|
| + virtual void LoadBlackList(LoadBlackListCallback callback) = 0;
|
| +
|
| + // Deletes all history in the store between |begin_time| and |end_time|.
|
| + // Returns a new BlackListItemMap with the adjusted history to the caller via
|
| + // |callback|.
|
| + virtual void ClearBlackList(const base::Time& begin_time,
|
| + const base::Time& end_time,
|
| + LoadBlackListCallback callback) = 0;
|
| +};
|
| +
|
| +} // namespace previews
|
| +
|
| +#endif // COMPONENTS_PREVIEWS_PREVIEWS_OPT_OUT_STORE_H_
|
|
|