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

Unified Diff: src/plugin/PluginDomTraverserBase.h

Issue 6136782441676800: No issue - clean white spaces in PluginDomTraverserBase.h (Closed)
Patch Set: fix direction and remove one additional case Created Dec. 10, 2014, 3:01 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/plugin/PluginDomTraverserBase.h
diff --git a/src/plugin/PluginDomTraverserBase.h b/src/plugin/PluginDomTraverserBase.h
index 1fffa8d2db421624ecba745fc6e952e5d7f31b2d..10fcd0e59ca103f7ce132fa78a825787a8318739 100644
--- a/src/plugin/PluginDomTraverserBase.h
+++ b/src/plugin/PluginDomTraverserBase.h
@@ -116,7 +116,7 @@ void CPluginDomTraverserBase<T>::TraverseDocument(IWebBrowser2* pBrowser, bool i
DWORD res = WaitForSingleObject(m_tab->m_filter->hideFiltersLoadedEvent, ENGINE_STARTUP_TIMEOUT);
if (!IsEnabled()) return;
- VARIANT_BOOL isBusy;
+ VARIANT_BOOL isBusy;
if (SUCCEEDED(pBrowser->get_Busy(&isBusy)))
{
if (isBusy)
@@ -159,7 +159,7 @@ void CPluginDomTraverserBase<T>::TraverseDocument(IWebBrowser2* pBrowser, bool i
return;
}
- CComVariant vIndex(0);
+ CComVariant vIndex(0);
CComPtr<IDispatch> pBodyDispatch;
if (FAILED(pBodyCollection->item(vIndex, vIndex, &pBodyDispatch)) || !pBodyDispatch)
{
@@ -289,7 +289,7 @@ void CPluginDomTraverserBase<T>::TraverseDocument(IWebBrowser2* pBrowser, bool i
{
TraverseDocument(pFrameBrowser, false, indent);
}
- }
+ }
}
}
}
@@ -319,7 +319,7 @@ void CPluginDomTraverserBase<T>::TraverseChild(IHTMLElement* pEl, IWebBrowser2*
cacheIndex = m_cacheIndexLast++;
- // Resize cache???
+ // Resize cache???
if (cacheIndex >= m_cacheElementsMax)
{
T* oldCacheElements = m_cacheElements;
@@ -330,7 +330,7 @@ void CPluginDomTraverserBase<T>::TraverseChild(IHTMLElement* pEl, IWebBrowser2*
m_cacheElementsMax *= 2;
- delete [] oldCacheElements;
+ delete [] oldCacheElements;
}
m_cacheElements[cacheIndex].Init();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld