Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: src/plugin/PluginClass.cpp

Issue 6650591174459392: Issues #276, #1163 - introduce class IncomingParam (Closed)
Left Patch Set: Created July 25, 2014, 11:27 p.m.
Right Patch Set: rewrite incomparable with patch set 1 Created July 29, 2014, 7:52 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/plugin/COM_Value.cpp ('k') | src/plugin/PluginUserSettings.cpp » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 #include "PluginStdAfx.h" 1 #include "PluginStdAfx.h"
2 2
3 #include "PluginClass.h" 3 #include "PluginClass.h"
4 #include "COM_Value.h" 4 #include "COM_Value.h"
5 #include "PluginSettings.h" 5 #include "PluginSettings.h"
6 #include "PluginSystem.h" 6 #include "PluginSystem.h"
7 #ifdef SUPPORT_FILTER 7 #ifdef SUPPORT_FILTER
8 #include "PluginFilter.h" 8 #include "PluginFilter.h"
9 #endif 9 #endif
10 #include "PluginMimeFilterClient.h" 10 #include "PluginMimeFilterClient.h"
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 } 624 }
625 } 625 }
626 notificationMessage.Hide(); 626 notificationMessage.Hide();
627 DEBUG_GENERAL("Tab change end"); 627 DEBUG_GENERAL("Tab change end");
628 return VARIANT_TRUE; 628 return VARIANT_TRUE;
629 } 629 }
630 630
631 // This gets called whenever there's a browser event 631 // This gets called whenever there's a browser event
632 STDMETHODIMP CPluginClass::Invoke(DISPID dispidMember, REFIID riid, LCID lcid, W ORD wFlags, DISPPARAMS* pDispParams, VARIANT* pvarResult, EXCEPINFO* pExcepInfo, UINT* puArgErr) 632 STDMETHODIMP CPluginClass::Invoke(DISPID dispidMember, REFIID riid, LCID lcid, W ORD wFlags, DISPPARAMS* pDispParams, VARIANT* pvarResult, EXCEPINFO* pExcepInfo, UINT* puArgErr)
633 { 633 {
634 /*
635 * See Issue #1163.
636 */
634 WCHAR tmp[256]; 637 WCHAR tmp[256];
635 wsprintf(tmp, L"Invoke: %d\n", dispidMember); 638 wsprintf(tmp, L"Invoke: %d\n", dispidMember);
636 DEBUG_GENERAL(tmp); 639 DEBUG_GENERAL(tmp);
637 switch (dispidMember) 640 switch (dispidMember)
638 { 641 {
639 642
640 case DISPID_WINDOWSTATECHANGED: 643 case DISPID_WINDOWSTATECHANGED:
641 return OnTabChanged(pDispParams, wFlags); 644 return OnTabChanged(pDispParams, wFlags);
642 break; 645 break;
643 case DISPID_HTMLDOCUMENTEVENTS2_ONBEFOREUPDATE: 646 case DISPID_HTMLDOCUMENTEVENTS2_ONBEFOREUPDATE:
(...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after
1993 } 1996 }
1994 } 1997 }
1995 } 1998 }
1996 1999
1997 hTabWnd = ::GetWindow(hTabWnd, GW_HWNDNEXT); 2000 hTabWnd = ::GetWindow(hTabWnd, GW_HWNDNEXT);
1998 } 2001 }
1999 2002
2000 return hTabWnd; 2003 return hTabWnd;
2001 2004
2002 } 2005 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld