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

Unified Diff: components/data_reduction_proxy/content/resources/interstitial.html

Issue 830503004: Data Reduction Proxy blocking page and resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@interstitalStep1
Patch Set: Add webui_resources.pak Created 5 years, 10 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/data_reduction_proxy/content/resources/interstitial.html
diff --git a/components/data_reduction_proxy/content/resources/interstitial.html b/components/data_reduction_proxy/content/resources/interstitial.html
new file mode 100644
index 0000000000000000000000000000000000000000..f0a8714875b056fb2cf4b608370db0615d0bd67a
--- /dev/null
+++ b/components/data_reduction_proxy/content/resources/interstitial.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html i18n-values="dir:textdirection;.style.fontSize:fontsize">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport"
+ content="initial-scale=1, minimum-scale=1, width=device-width">
+ <title i18n-content="tabTitle"></title>
+ <link rel="stylesheet" href="interstitial.css">
+ <script src="../../../../ui/webui/resources/js/util.js"></script>
+ <script src="../../../../ui/webui/resources/js/load_time_data.js"></script>
+ <script src="data_reduction_proxy.js"></script>
+ <script src="interstitial.js"></script>
+ </head>
+<body id="body" i18n-values=".style.fontFamily:fontfamily">
+ <div class="interstitial-wrapper">
+ <div class="icon" id="icon"></div>
+ <div id="main-message">
+ <h1 i18n-content="heading"></h1>
+ <p i18n-values=".innerHTML:primaryParagraph"></p>
+ <p i18n-values=".innerHTML:secondaryParagraph"></p>
+ </div>
+ <div class="nav-wrapper">
+ <button i18n-content="primaryButtonText" id="primary-button"></button>
+ <button i18n-content="secondaryButtonText" id="secondary-button"></button>
+ </div>
+ </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698