| Index: chrome/browser/resources/file_manager/background.html
|
| ===================================================================
|
| --- chrome/browser/resources/file_manager/background.html (revision 82643)
|
| +++ chrome/browser/resources/file_manager/background.html (working copy)
|
| @@ -1,28 +0,0 @@
|
| -<!DOCTYPE HTML>
|
| -<!--
|
| - -- Copyright (c) 2011 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.
|
| - -->
|
| -<html>
|
| -<head>
|
| -<script>
|
| -
|
| -var last_file_entries = null;
|
| -
|
| -function getLastFileEntries() {
|
| - return last_file_entries;
|
| -}
|
| -
|
| -chrome.fileBrowserHandler.onExecute.addListener(
|
| - function(id, file_entries) {
|
| - last_file_entries = file_entries;
|
| -
|
| - chrome.tabs.create({
|
| - url: "slideshow.html"
|
| - });
|
| - }
|
| -);
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|