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

Unified Diff: chrome/test/data/extensions/api_test/webrequest_hosted_app/index.html

Issue 1330263002: Show hosted app requests to extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2490
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/webrequest_hosted_app/index.html
diff --git a/chrome/test/data/extensions/api_test/webrequest_hosted_app/index.html b/chrome/test/data/extensions/api_test/webrequest_hosted_app/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..024d301dc3fa24a492c3c1325551b46f8cbe606e
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/webrequest_hosted_app/index.html
@@ -0,0 +1,12 @@
+<!--
+ * Copyright 2015 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.
+-->
+<script>
+console.assert(chrome.app.isInstalled, 'This page should be a hosted app.');
+
+fetch('./index.html').catch(function() {
+ console.error('fetch unexpectedly failed!');
+});
+</script>

Powered by Google App Engine
This is Rietveld 408576698