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

Side by Side Diff: extensions/test/data/system/storage_attachment/test_storage_api.js

Issue 797023006: s/app_shell_browsertests/extensions_browsertests/g (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge, actually add extensions_tests.gyp Created 5 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // system.storage api test 5 // system.storage api test
6 // app_shell_browsertests --gtest_filter=SystemStorageApiTest.Storage 6 // extensions_browsertests --gtest_filter=SystemStorageApiTest.Storage
7 7
8 // Testing data should be the same as |kRemovableStorageData| in 8 // Testing data should be the same as |kRemovableStorageData| in
9 // test_storage_info_provider.cc. 9 // test_storage_info_provider.cc.
10 var testData = { 10 var testData = {
11 id: "transient:0004", 11 id: "transient:0004",
12 name: "/media/usb1", 12 name: "/media/usb1",
13 type: "removable", 13 type: "removable",
14 capacity: 4098 14 capacity: 4098
15 }; 15 };
16 16
(...skipping 21 matching lines...) Expand all
38 chrome.system.storage.onDetached, 38 chrome.system.storage.onDetached,
39 function listener(id) { 39 function listener(id) {
40 chrome.test.assertEq(device_id, id); 40 chrome.test.assertEq(device_id, id);
41 chrome.test.sendMessage(id); 41 chrome.test.sendMessage(id);
42 } 42 }
43 ); 43 );
44 // Tell browser process to detach a storage. 44 // Tell browser process to detach a storage.
45 chrome.test.sendMessage("detach"); 45 chrome.test.sendMessage("detach");
46 } 46 }
47 ]); 47 ]);
OLDNEW
« no previous file with comments | « extensions/test/data/system/storage/test_storage_api.js ('k') | testing/buildbot/chromium.chromiumos.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698