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

Unified Diff: chrome/test/data/extensions/platform_apps/crashtest_hidden_windows/test.js

Issue 1024373002: Remove app_crash_browsertest.cc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add test to platform_apps/window_api Created 5 years, 9 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/platform_apps/crashtest_hidden_windows/test.js
diff --git a/chrome/test/data/extensions/platform_apps/crashtest_hidden_windows/test.js b/chrome/test/data/extensions/platform_apps/crashtest_hidden_windows/test.js
deleted file mode 100644
index 365716d1d275fe72caf6e0b81decc48f5820e4b8..0000000000000000000000000000000000000000
--- a/chrome/test/data/extensions/platform_apps/crashtest_hidden_windows/test.js
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2013 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.
-
-chrome.app.runtime.onLaunched.addListener(function() {
- chrome.app.window.create(
- 'index.html', { width: 800, height: 600, hidden: true },
- function() {
- chrome.app.window.create(
- 'index.html', { width: 800, height: 600, hidden: false },
- function() {
- chrome.test.sendMessage("Done");
- }
- );
- }
- );
-});

Powered by Google App Engine
This is Rietveld 408576698