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

Unified Diff: third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.h

Issue 2712033002: Part 1 Of Renaming FrameLoaderClient to LocalFrameClient. (Closed)
Patch Set: Change all forward declarations of FrameLoaderClient to LocalFrameClient and fix call sites. Created 3 years, 10 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
Index: third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.h
diff --git a/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.h b/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.h
index 7e972cc62c636e6730ba9a671235ea76d5825b09..9e85ccfc42e0ed7be7d93066a2a47de7d84680e9 100644
--- a/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.h
+++ b/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.h
@@ -42,6 +42,7 @@
#include "wtf/text/StringHash.h"
#include "wtf/text/TextPosition.h"
#include "wtf/text/WTFString.h"
+
#include <memory>
#include <utility>
@@ -57,7 +58,7 @@ class CSPDirectiveList;
class CSPSource;
class Document;
class Element;
-class FrameLoaderClient;
+class LocalFrameClient;
class KURL;
class ResourceRequest;
class SecurityOrigin;
@@ -126,7 +127,7 @@ class CORE_EXPORT ContentSecurityPolicy
void addPolicyFromHeaderValue(const String&,
ContentSecurityPolicyHeaderType,
ContentSecurityPolicyHeaderSource);
- void reportAccumulatedHeaders(FrameLoaderClient*) const;
+ void reportAccumulatedHeaders(LocalFrameClient*) const;
std::unique_ptr<Vector<CSPHeaderAndType>> headers() const;

Powered by Google App Engine
This is Rietveld 408576698