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

Unified Diff: chrome/test/data/extensions/api_test/systeminfo/memory/test_memory_api.js

Issue 19912002: [SystemInfo API] Rename systemInfo Memory API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update commit message. Created 7 years, 5 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/systeminfo/memory/test_memory_api.js
diff --git a/chrome/test/data/extensions/api_test/systeminfo/memory/test_memory_api.js b/chrome/test/data/extensions/api_test/systeminfo/memory/test_memory_api.js
deleted file mode 100644
index 77eca5683e5a9c6f59c62d5da5b1aa5804d4b031..0000000000000000000000000000000000000000
--- a/chrome/test/data/extensions/api_test/systeminfo/memory/test_memory_api.js
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright (c) 2012 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.
-
-// systeminfo.memory api test
-// browser_tests --gtest_filter=SystemInfoMemoryApiTest.*
-
-chrome.test.runTests([
- function testGet() {
- for(var i = 0; i < 10; ++i) {
- chrome.systemInfo.memory.get(chrome.test.callbackPass(function(result) {
- chrome.test.assertEq(4096, result.capacity);
- chrome.test.assertEq(1024, result.availableCapacity);
- }));
- }
- }
-]);
-
« no previous file with comments | « chrome/test/data/extensions/api_test/systeminfo/memory/manifest.json ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698