summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_frame_npapi.h
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-25 17:21:02 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-25 17:21:02 +0000
commit6df30afbe287a948fd7f229029e6ec8e88d2735a (patch)
treeff6f7b59075d39b10be1a0c045a04b891cd05df3 /chrome_frame/chrome_frame_npapi.h
parent23ecd53031047f8e19363e92dcc8eccbaf121665 (diff)
downloadchromium_src-6df30afbe287a948fd7f229029e6ec8e88d2735a.zip
chromium_src-6df30afbe287a948fd7f229029e6ec8e88d2735a.tar.gz
chromium_src-6df30afbe287a948fd7f229029e6ec8e88d2735a.tar.bz2
Fixes for the chrome frame npapi test failures seen on the builders. These failures occurred
after the change to clean up chrome frame automation code. BUG=none TEST=ChromeFrame firefox tests should pass. TBR=jam Review URL: http://codereview.chromium.org/6055008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70172 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_frame_npapi.h')
-rw-r--r--chrome_frame/chrome_frame_npapi.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/chrome_frame/chrome_frame_npapi.h b/chrome_frame/chrome_frame_npapi.h
index 5f78ef7..1d3ac300 100644
--- a/chrome_frame/chrome_frame_npapi.h
+++ b/chrome_frame/chrome_frame_npapi.h
@@ -133,13 +133,12 @@ END_MSG_MAP()
protected:
// Handler for accelerator messages passed on from the hosted chrome
// instance.
- virtual void OnAcceleratorPressed(int tab_handle, const MSG& accel_message);
- virtual void OnTabbedOut(int tab_handle, bool reverse);
- virtual void OnOpenURL(int tab_handle, const GURL& url,
- const GURL& referrer, int open_disposition);
- virtual void OnLoad(int tab_handle, const GURL& url);
- virtual void OnMessageFromChromeFrame(int tab_handle,
- const std::string& message,
+ virtual void OnAcceleratorPressed(const MSG& accel_message);
+ virtual void OnTabbedOut(bool reverse);
+ virtual void OnOpenURL(const GURL& url, const GURL& referrer,
+ int open_disposition);
+ virtual void OnLoad(const GURL& url);
+ virtual void OnMessageFromChromeFrame(const std::string& message,
const std::string& origin,
const std::string& target);
// ChromeFrameDelegate overrides