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

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

Issue 8949014: Reverting due to compile failure on multiple bots. (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
Property Changes:
Added: svn:mergeinfo
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 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 var allTypes = { 5 var allTypes = {
6 cache: true, 6 cache: true,
7 cookies: true, 7 cookies: true,
8 downloads: true, 8 downloads: true,
9 formData: true, 9 formData: true,
10 history: true, 10 history: true,
(...skipping 22 matching lines...) Expand all
33 }, 33 },
34 function testClearDownloads() { 34 function testClearDownloads() {
35 chrome.experimental.clear.downloads( 35 chrome.experimental.clear.downloads(
36 "everything", chrome.test.callbackPass()); 36 "everything", chrome.test.callbackPass());
37 }, 37 },
38 function testClearFormData() { 38 function testClearFormData() {
39 chrome.experimental.clear.formData( 39 chrome.experimental.clear.formData(
40 "everything", chrome.test.callbackPass()); 40 "everything", chrome.test.callbackPass());
41 } 41 }
42 ]); 42 ]);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698