Index: content/shell/shell_browser_main.cc |
diff --git a/content/shell/shell_browser_main.cc b/content/shell/shell_browser_main.cc |
index f1343d9688711592a1db23d180b7ba1b6751dc6f..0bbc9ecfddb878986c4fa6bbdf133064bcf817a5 100644 |
--- a/content/shell/shell_browser_main.cc |
+++ b/content/shell/shell_browser_main.cc |
@@ -17,6 +17,11 @@ |
namespace { |
GURL GetURLForLayoutTest(const char* test_name) { |
+#if defined(OS_ANDROID) |
+ // DumpRenderTree is not currently supported for Android using the content |
+ // shell. |
Yaron
2012/04/19 00:35:34
Add NOTIMPLEMENTED()
Ted C
2012/04/19 01:17:07
Done.
|
+ return GURL::EmptyGURL(); |
+#else |
std::string path_or_url = test_name; |
std::string pixel_hash; |
std::string timeout; |
@@ -38,6 +43,7 @@ GURL GetURLForLayoutTest(const char* test_name) { |
webkit_support::SetCurrentDirectoryForFileURL(test_url); |
} |
return test_url; |
+#endif |
} |
} // namespace |