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

Unified Diff: content/browser/browser_plugin/browser_plugin_host_browsertest.cc

Issue 24579003: Clean up remaining unused globals (on mac). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: staticmedia Created 7 years, 3 months 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/browser_plugin/browser_plugin_host_browsertest.cc
diff --git a/content/browser/browser_plugin/browser_plugin_host_browsertest.cc b/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
index e1d948359251e0cdc2816827950fc2ff6857141a..f9d60bae2109873493bd089f7559bc995a2d509a 100644
--- a/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
+++ b/content/browser/browser_plugin/browser_plugin_host_browsertest.cc
@@ -49,20 +49,6 @@ namespace {
const char kHTMLForGuest[] =
"data:text/html,<html><body>hello world</body></html>";
-const char kHTMLForGuestBusyLoop[] =
- "data:text/html,<html><head><script type=\"text/javascript\">"
- "function PauseMs(timems) {"
- " document.title = \"start\";"
- " var date = new Date();"
- " var currDate = null;"
- " do {"
- " currDate = new Date();"
- " } while (currDate - date < timems)"
- "}"
- "function StartPauseMs(timems) {"
- " setTimeout(function() { PauseMs(timems); }, 0);"
- "}"
- "</script></head><body></body></html>";
const char kHTMLForGuestTouchHandler[] =
"data:text/html,<html><body><div id=\"touch\">With touch</div></body>"
"<script type=\"text/javascript\">"

Powered by Google App Engine
This is Rietveld 408576698