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

Unified Diff: chrome_frame/chrome_frame_plugin.h

Issue 5998006: Clean up Automation and Chrome Frame IPC code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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 | « chrome_frame/chrome_frame_npapi.cc ('k') | chrome_frame/external_tab.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_frame_plugin.h
===================================================================
--- chrome_frame/chrome_frame_plugin.h (revision 69966)
+++ chrome_frame/chrome_frame_plugin.h (working copy)
@@ -114,14 +114,13 @@
}
protected:
- virtual void OnNavigationFailed(int tab_handle, int error_code,
- const GURL& gurl) {
+ virtual void OnNavigationFailed(int error_code, const GURL& gurl) {
OnLoadFailed(error_code, gurl.spec());
}
- virtual void OnHandleContextMenu(int tab_handle, HANDLE menu_handle,
+ virtual void OnHandleContextMenu(HANDLE menu_handle,
int align_flags,
- const IPC::MiniContextMenuParams& params) {
+ const MiniContextMenuParams& params) {
if (!menu_handle || !automation_client_.get()) {
NOTREACHED();
return;
@@ -220,7 +219,7 @@
// Return true if menu command is processed, otherwise the command will be
// passed to Chrome for execution. Override in most-derived class if needed.
bool HandleContextMenuCommand(UINT cmd,
- const IPC::MiniContextMenuParams& params) {
+ const MiniContextMenuParams& params) {
return false;
}
« no previous file with comments | « chrome_frame/chrome_frame_npapi.cc ('k') | chrome_frame/external_tab.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698