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

Unified Diff: src/plugin/PluginDomTraverserBase.h

Issue 29330709: Issue #3343 - Eliminate unescaping of URL (Closed)
Patch Set: Created Nov. 23, 2015, 2:16 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
Index: src/plugin/PluginDomTraverserBase.h
===================================================================
--- a/src/plugin/PluginDomTraverserBase.h
+++ b/src/plugin/PluginDomTraverserBase.h
@@ -240,7 +240,6 @@
if (SUCCEEDED(pFrameBrowser->get_LocationURL(&bstrSrc)) && bstrSrc)
{
src = std::wstring(bstrSrc,SysStringLen(bstrSrc));
- UnescapeUrl(src);
}
if (!src.empty())
{
@@ -290,7 +289,6 @@
{
src = L"http://" + m_domain + src;
}
- UnescapeUrl(src);
// Check if Iframe should be traversed
if (OnIFrame(pFrameEl, src, indent))

Powered by Google App Engine
This is Rietveld