[Cronet] Delay StartNetLog and StopNetLog until native request context is initialized
[chromium-blink-merge.git] / chrome / test / data / extensions / platform_apps / apps_only / background.js
blob5eabb20a112e6365744604493372bfceb86077e7
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 chrome.test.runTests([
7 function NoAppWindows() {
8 if (typeof(chrome.app.window) == "undefined")
9 chrome.test.succeed();
10 else
11 chrome.test.fail("chrome.app.window is defined, but shouldn't be");
14 ]);