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

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

Issue 2388253002: Use the previews black list for offline previews (Closed)
Patch Set: git cl try 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..d45931d9a04536c893cb3d16e6053697a76f8e9d
--- /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() {}
+ virtual ~PreviewsDecider() {}
+
+ // Whether |request| is allowed to show a preview of |type|.
+ virtual bool ShouldAllowPreview(net::URLRequest* request,
+ PreviewsType type) = 0;
jianli 2016/10/05 01:13:02 nit: add const modifier
RyanSturm 2016/10/05 03:09:39 Done.
+};
+
+} // namespace previews
+
+#endif // COMPONENTS_PREVIEWS_CORE_PREVIEWS_DECIDER_H_

Powered by Google App Engine
This is Rietveld 408576698