summaryrefslogtreecommitdiffstats
path: root/content/browser/tab_contents/tab_contents_delegate_unittest.cc
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 /content/browser/tab_contents/tab_contents_delegate_unittest.cc
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 'content/browser/tab_contents/tab_contents_delegate_unittest.cc')
-rw-r--r--content/browser/tab_contents/tab_contents_delegate_unittest.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/content/browser/tab_contents/tab_contents_delegate_unittest.cc b/content/browser/tab_contents/tab_contents_delegate_unittest.cc
index 2181cad..f553f54 100644
--- a/content/browser/tab_contents/tab_contents_delegate_unittest.cc
+++ b/content/browser/tab_contents/tab_contents_delegate_unittest.cc
@@ -58,7 +58,8 @@ class MockTabContentsDelegate : public TabContentsDelegate {
const gfx::Rect& pos) OVERRIDE {
}
- virtual void UpdateTargetURL(TabContents* source, const GURL& url) OVERRIDE {}
+ virtual void UpdateTargetURL(TabContents* source, int32 page_id,
+ const GURL& url) {}
};
TEST(TabContentsDelegateTest, UnregisterInDestructor) {