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

Unified Diff: components/previews/core/previews_decider.h

Issue 2388253002: Use the previews black list for offline previews (Closed)
Patch Set: tbansal mmenke comments Created 4 years, 2 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: components/previews/core/previews_decider.h
diff --git a/components/previews/core/previews_decider.h b/components/previews/core/previews_decider.h
new file mode 100644
index 0000000000000000000000000000000000000000..2df561611e98eb9c859cbb27ad1cd26b31d24c0e
--- /dev/null
+++ b/components/previews/core/previews_decider.h
@@ -0,0 +1,29 @@
+// 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_CORE_PREVIEWS_DECIDER_H_
+#define COMPONENTS_PREVIEWS_CORE_PREVIEWS_DECIDER_H_
+
+#include "components/previews/core/previews_opt_out_store.h"
+
+namespace net {
+class URLRequest;
+}
+
+namespace previews {
+
+class PreviewsDecider {
+ public:
+ // Whether |request| is allowed to show a preview of |type|.
+ virtual bool ShouldAllowPreview(const net::URLRequest& request,
+ PreviewsType type) const = 0;
+
+ protected:
+ PreviewsDecider() {}
+ virtual ~PreviewsDecider() {}
+};
+
+} // namespace previews
+
+#endif // COMPONENTS_PREVIEWS_CORE_PREVIEWS_DECIDER_H_

Powered by Google App Engine
This is Rietveld 408576698