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

Unified Diff: chrome/test/data/extensions/api_test/notifications/api/other_app/main.js

Issue 2335293002: ShouldDisplayOverFullscreen implementation (Closed)
Patch Set: Rebasing to try to get patch to compile Created 4 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/notifications/api/other_app/main.js
diff --git a/chrome/test/data/extensions/platform_apps/app_window/generic/main.js b/chrome/test/data/extensions/api_test/notifications/api/other_app/main.js
similarity index 77%
copy from chrome/test/data/extensions/platform_apps/app_window/generic/main.js
copy to chrome/test/data/extensions/api_test/notifications/api/other_app/main.js
index 5176946a112e59b687cccfa1390027c1ebc9f4fb..24c87e8a88c16e2f0691d85aaec9b42363ac32cc 100644
--- a/chrome/test/data/extensions/platform_apps/app_window/generic/main.js
+++ b/chrome/test/data/extensions/api_test/notifications/api/other_app/main.js
@@ -1,4 +1,4 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
+// 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.
@@ -6,7 +6,7 @@ chrome.app.runtime.onLaunched.addListener(function() {
chrome.test.sendMessage('launched', function(reply) {
// Create window options defined in tests.
- var options = JSON.parse(reply);
+ const options = JSON.parse(reply);
chrome.app.window.create('index.html', options, function() {});
});

Powered by Google App Engine
This is Rietveld 408576698