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

Side by Side Diff: chrome/test/data/extensions/api_test/processes/api/test.js

Issue 8757010: Move another block of extension tests to manifest_version 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 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.
4
1 // Processes API test for Chrome. 5 // Processes API test for Chrome.
2 // browser_tests.exe --gtest_filter=ExtensionApiTest.Processes 6 // browser_tests.exe --gtest_filter=ExtensionApiTest.Processes
3 7
4 var pass = chrome.test.callbackPass; 8 var pass = chrome.test.callbackPass;
5 var fail = chrome.test.callbackFail; 9 var fail = chrome.test.callbackFail;
6 var assertEq = chrome.test.assertEq; 10 var assertEq = chrome.test.assertEq;
7 var assertTrue = chrome.test.assertTrue; 11 var assertTrue = chrome.test.assertTrue;
8 var listenOnce = chrome.test.listenOnce; 12 var listenOnce = chrome.test.listenOnce;
9 13
10 var tabs = []; 14 var tabs = [];
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 assertTrue("type" in process); 150 assertTrue("type" in process);
147 assertTrue("cpu" in process); 151 assertTrue("cpu" in process);
148 assertTrue("network" in process); 152 assertTrue("network" in process);
149 assertTrue("sharedMemory" in process); 153 assertTrue("sharedMemory" in process);
150 assertTrue("privateMemory" in process); 154 assertTrue("privateMemory" in process);
151 } 155 }
152 }); 156 });
153 }, 157 },
154 158
155 ]); 159 ]);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698