summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/webui
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-06 18:42:45 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-06 18:42:45 +0000
commitd952a0583a393551b3f08fb77bd8cd49dde6c446 (patch)
tree43ebbc47aac7dbb2c6105eed44937c51b93756bc /chrome/browser/ui/webui
parent32c438e297c499e8444c0b5c19e2c4fa155375ff (diff)
downloadchromium_src-d952a0583a393551b3f08fb77bd8cd49dde6c446.zip
chromium_src-d952a0583a393551b3f08fb77bd8cd49dde6c446.tar.gz
chromium_src-d952a0583a393551b3f08fb77bd8cd49dde6c446.tar.bz2
Moved the following IPCs out of chrome into content where they are handled by
TabContents/RVH which eventually forward the notifications out to the TabContentsDelegate. 1. ViewHostMsg_CrashedPlugin 2. ViewHostMsg_DidStartProvisionalLoadForFrame 3. ViewHostMsg_UpdateTargetURL The ViewHostMsg_DidStartProvisionalLoadForFrame IPC is still handled by the PrerenderRenderViewHostObserver object in chrome. Will move that out in a future CL. BUG=87335 Review URL: http://codereview.chromium.org/7835004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99775 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/webui')
-rw-r--r--chrome/browser/ui/webui/html_dialog_tab_contents_delegate_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/ui/webui/html_dialog_tab_contents_delegate_unittest.cc b/chrome/browser/ui/webui/html_dialog_tab_contents_delegate_unittest.cc
index f3eef16..845d52f 100644
--- a/chrome/browser/ui/webui/html_dialog_tab_contents_delegate_unittest.cc
+++ b/chrome/browser/ui/webui/html_dialog_tab_contents_delegate_unittest.cc
@@ -64,7 +64,7 @@ TEST_F(HtmlDialogTabContentsDelegateTest, DoNothingMethodsTest) {
test_tab_contents_delegate_->ActivateContents(NULL);
test_tab_contents_delegate_->LoadingStateChanged(NULL);
test_tab_contents_delegate_->CloseContents(NULL);
- test_tab_contents_delegate_->UpdateTargetURL(NULL, GURL());
+ test_tab_contents_delegate_->UpdateTargetURL(NULL, 0, GURL());
test_tab_contents_delegate_->MoveContents(NULL, gfx::Rect());
EXPECT_EQ(0, browser()->tab_count());
EXPECT_EQ(1U, BrowserList::size());