Index: chrome/renderer/resources/plugins/plugin_delay.html |
diff --git a/chrome/renderer/resources/plugins/plugin_delay.html b/chrome/renderer/resources/plugins/plugin_delay.html |
deleted file mode 100644 |
index 2414abf24288b37e67ef5b79d275e769e3f9fa03..0000000000000000000000000000000000000000 |
--- a/chrome/renderer/resources/plugins/plugin_delay.html |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-<!doctype html> |
-<html> |
-<head> |
-<meta charset="utf-8"> |
-<meta name="viewport" content="width=device-width, user-scalable=no"> |
-<script> |
- window.onload = function() { |
- if (plugin.didFinishLoading) |
- plugin.didFinishLoading(); |
- if (plugin.didFinishIconRepositionForTesting) { |
- // Defer until reflow complete. |
- window.setTimeout(function() { |
- plugin.didFinishIconRepositionForTesting(); |
- }); |
- }}; |
-</script> |
-<body> |
- <div></div> |
-</body> |
-</html> |
- |