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

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

Issue 11013110: Cleanup (Closed)
Left Patch Set: Whole cleanup + comments addressed Created July 23, 2013, 11:34 a.m.
Right Patch Set: More beautification and addressing comments Created July 29, 2013, 12:13 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/plugin/AdblockPlusTab.h ('k') | src/plugin/Config.h » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 #include "PluginStdAfx.h" 1 #include "PluginStdAfx.h"
2 2
3 #include "PluginSettings.h" 3 #include "PluginSettings.h"
4 #include "PluginSystem.h" 4 #include "PluginSystem.h"
5 #include "PluginClass.h" 5 #include "PluginClass.h"
6 #include "PluginClientFactory.h" 6 #include "PluginClientFactory.h"
7 7
8 #include "AdblockPlusTab.h" 8 #include "AdblockPlusTab.h"
9 9
10 10
11 CPluginTab::CPluginTab(CPluginClass* plugin) : CPluginTabBase(plugin) 11 CPluginTab::CPluginTab(CPluginClass* plugin) : CPluginTabBase(plugin)
12 { 12 {
13 } 13 }
14 14
15 CPluginTab::~CPluginTab() 15 CPluginTab::~CPluginTab()
16 { 16 {
17 } 17 }
18
19
20 void CPluginTab::OnNavigate(const CString& url)
Felix Dahlke 2013/07/25 13:52:33 I don't think there's any point in overwriting thi
Oleksandr 2013/07/26 14:20:04 You're right. I'd still leave the CPuginTab class
21 {
22 CPluginTabBase::OnNavigate(url);
23 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld