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

Unified Diff: content/browser/renderer_host/render_view_host_unittest.cc

Issue 9815030: Merge parts of 117417 from trunk. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1025/src/
Patch Set: Created 8 years, 9 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
« no previous file with comments | « content/browser/renderer_host/render_view_host.cc ('k') | content/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_view_host_unittest.cc
===================================================================
--- content/browser/renderer_host/render_view_host_unittest.cc (revision 128048)
+++ content/browser/renderer_host/render_view_host_unittest.cc (working copy)
@@ -118,8 +118,8 @@
drop_data.url = file_url;
drop_data.html_base_url = file_url;
rvh()->TestOnMsgStartDragging(drop_data);
- EXPECT_TRUE(view_delegate.drag_url().is_empty());
- EXPECT_TRUE(view_delegate.html_base_url().is_empty());
+ EXPECT_EQ(GURL("about:blank"), view_delegate.drag_url());
+ EXPECT_EQ(GURL("about:blank"), view_delegate.html_base_url());
GURL http_url = GURL("http://www.domain.com/index.html");
drop_data.url = http_url;
« no previous file with comments | « content/browser/renderer_host/render_view_host.cc ('k') | content/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698