summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorarv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-21 18:22:52 +0000
committerarv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-21 18:22:52 +0000
commit9b535c7f681829f66d8f1450d5e2ffad0ec60f6b (patch)
tree2174246e7f3fdb79af53dff2881d7e89f3f65129 /chrome
parent6002fca322c5916e59798aee7ff165b5311e5054 (diff)
downloadchromium_src-9b535c7f681829f66d8f1450d5e2ffad0ec60f6b.zip
chromium_src-9b535c7f681829f66d8f1450d5e2ffad0ec60f6b.tar.gz
chromium_src-9b535c7f681829f66d8f1450d5e2ffad0ec60f6b.tar.bz2
Revert 82513 - Adding missing file.BUG=NoneTEST=NoneTBR=
TBR=serya@google.com Review URL: http://codereview.chromium.org/6880108 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@82514 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/resources/background.html28
1 files changed, 0 insertions, 28 deletions
diff --git a/chrome/browser/resources/background.html b/chrome/browser/resources/background.html
deleted file mode 100644
index 1c9f88d..0000000
--- a/chrome/browser/resources/background.html
+++ /dev/null
@@ -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>