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

Unified Diff: Source/core/html/parser/XSSAuditor.cpp

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu Created 7 years, 8 months 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 | « Source/core/html/parser/XSSAuditor.h ('k') | Source/core/html/parser/XSSAuditorDelegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/parser/XSSAuditor.cpp
diff --git a/Source/core/html/parser/XSSAuditor.cpp b/Source/core/html/parser/XSSAuditor.cpp
index 8ef31efd0af7f00c9da28cffec0855f68681cf89..be7f9b3ddbeaf1bb4c220f6e6991d90aa02cfed2 100644
--- a/Source/core/html/parser/XSSAuditor.cpp
+++ b/Source/core/html/parser/XSSAuditor.cpp
@@ -42,13 +42,13 @@
#include "HTMLTokenizer.h"
#include "InspectorInstrumentation.h"
#include "InspectorValues.h"
-#include "KURL.h"
#include "PingLoader.h"
#include "SecurityOrigin.h"
#include "Settings.h"
#include "TextResourceDecoder.h"
#include "XLinkNames.h"
#include "XSSAuditorDelegate.h"
+#include "core/platform/KURL.h"
#include "core/platform/network/FormData.h"
#include "core/platform/text/DecodeEscapeSequences.h"
#include "core/platform/text/TextEncoding.h"
@@ -166,7 +166,7 @@ static inline String decode16BitUnicodeEscapeSequences(const String& string)
static inline String decodeStandardURLEscapeSequences(const String& string, const TextEncoding& encoding)
{
- // We use decodeEscapeSequences() instead of decodeURLEscapeSequences() (declared in KURL.h) to
+ // We use decodeEscapeSequences() instead of decodeURLEscapeSequences() (declared in core/platform/KURL.h) to
// avoid platform-specific URL decoding differences (e.g. KURLGoogle).
return decodeEscapeSequences<URLEscapeSequence>(string, encoding);
}
« no previous file with comments | « Source/core/html/parser/XSSAuditor.h ('k') | Source/core/html/parser/XSSAuditorDelegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698