123730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)// Copyright 2014 The Chromium Authors. All rights reserved.
290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// Use of this source code is governed by a BSD-style license that can be
390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// found in the LICENSE file.
490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)(function() {
690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)window.testRunner = {};
790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)window.testRunner.isDone = false;
890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)testRunner.waitUntilDone = function() {};
1090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)testRunner.dumpAsText = function() {};
1190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)testRunner.notifyDone = function() {
1290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)  this.isDone = true;
1390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)};
14eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch
15eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdochwindow.GCController = {};
16eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch
17eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen MurdochGCController.collect = function() {
18eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch  gc();
19eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch};
2090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)})();
21