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

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

Issue 2388253002: Use the previews black list for offline previews (Closed)
Patch Set: jianli comment 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..70b8a5f6e6ddc22f4618552e283c32da17309bf0
--- /dev/null
+++ b/components/previews/core/previews_decider.h
@@ -0,0 +1,28 @@
+// 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:
+ PreviewsDecider() {}
tbansal1 2016/10/06 14:51:04 you can make the ctor and dtor protected.
RyanSturm 2016/10/06 15:52:16 Done.
+ virtual ~PreviewsDecider() {}
+
+ // Whether |request| is allowed to show a preview of |type|.
+ virtual bool ShouldAllowPreview(const net::URLRequest& request,
+ PreviewsType type) const = 0;
+};
+
+} // namespace previews
+
+#endif // COMPONENTS_PREVIEWS_CORE_PREVIEWS_DECIDER_H_

Powered by Google App Engine
This is Rietveld 408576698