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

Side by Side Diff: components/previews/previews_black_list.h

Issue 2335023002: Adding a previews IO-thread blacklist (Closed)
Patch Set: tbansal comments Created 4 years, 3 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_PREVIEWS_PREVIEWS_BLACK_LIST_H_
6 #define COMPONENTS_PREVIEWS_PREVIEWS_BLACK_LIST_H_
7
8 #include <stdint.h>
9
10 #include <memory>
11 #include <queue>
12 #include <string>
13 #include <vector>
14
15 #include "base/callback.h"
16 #include "base/macros.h"
17 #include "base/memory/weak_ptr.h"
18 #include "base/threading/thread_checker.h"
19 #include "components/previews/previews_opt_out_store.h"
20
21 class GURL;
22
23 namespace base {
24 class Time;
25 }
26
27 namespace previews {
28 class PreviewsBlackListItem;
29
30 // Manages the state of black listed domains for the previews experiment. Loads
31 // the stored black list from |opt_out_store| and manages an in memory black
32 // list on the IO thread. Updates to the black list are stored in memory and
33 // pushed to the store. Asynchronous modifications are stored in a queue and
34 // executed in order. Reading from the black list is always synchronous, and if
35 // the black list is not currently loaded (e.g., at startup, after clearing
36 // browsing history), domains are reported as black listed.
37 class PreviewsBlackList {
38 public:
39 // |opt_out_store| is the backing store to retrieve and store black list
40 // information, and can be null. When |opt_out_store| is null, the in-memory
41 // map will be immeadiately loaded to empty. If |opt_out_store| is non-null,
42 // it will be used to load the in-memory map asynchronously.
43 explicit PreviewsBlackList(
44 std::unique_ptr<PreviewsOptOutStore> opt_out_store);
45 ~PreviewsBlackList();
46
47 typedef base::Closure QueueClosure;
tbansal1 2016/09/14 21:36:26 Why are these typedefs public?
RyanSturm 2016/09/14 22:41:26 Done.
48 typedef base::Callback<void(bool)> BlackListedCallback;
49
50 // Asynchronously adds a new navigation to to the in-memory black list and
51 // backing store. |opt_out| is whether the user opted out of the preview or
52 // navigated away from the page without opting out. |type| is only passed to
53 // the backing store.
54 void AddPreviewNavigation(const GURL& url, bool opt_out, PreviewsType type);
55
56 // Synchronously determines if |host_name| should be allowed to show previews.
57 // If the black list has loaded yet, this will always return false. |type| is
58 // not used to make this decision.
59 bool IsLoadedAndAllowed(const GURL& url, PreviewsType type);
60
61 private:
62 // Synchronous version of AddPreviewNavigation method.
63 void AddPreviewNavigationSync(const GURL& host_name,
64 bool opt_out,
65 PreviewsType type);
66
67 // Returns the PreviewsBlackListItem representing |host_name|. If there is no
68 // item for |host_name|, one will be created iff |create_if_needed| is true.
69 PreviewsBlackListItem* GetBlackListItem(const std::string& host_name,
70 bool create_if_needed);
71
72 // Callback passed to the backing store when loading black list information.
73 // Moves the returned map into the in-memory black list and runs any
74 // outstanding tasks.
75 void LoadBlackListDone(std::unique_ptr<BlackListItemMap> black_list_item_map);
76
77 // Called while waiting for the black list to be loaded from the backing
78 // store.
79 // Enqueues a task to run when when loading black list information has
80 // completed. Maintains the order that tasks were called in.
81 void QueuePendingTask(QueueClosure callback);
82
83 // Map maintaining the in-memory black list.
84 std::unique_ptr<BlackListItemMap> black_list_item_map_;
85
86 // Whether the black list is done being loaded from the backing store.
87 bool loaded_;
88
89 // The backing store of the black list information.
90 std::unique_ptr<PreviewsOptOutStore> opt_out_store_;
91
92 // Callbacks to be run after loading information from the backing store has
93 // completed.
94 std::queue<QueueClosure> pending_callbacks_;
95
96 base::ThreadChecker thread_checker_;
97
98 base::WeakPtrFactory<PreviewsBlackList> weak_factory_;
99
100 DISALLOW_COPY_AND_ASSIGN(PreviewsBlackList);
101 };
102
103 } // namespace previews
104
105 #endif // COMPONENTS_PREVIEWS_PREVIEWS_BLACK_LIST_ITEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698