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

Unified Diff: third_party/WebKit/Source/core/fetch/ScriptResource.h

Issue 1389383003: WIP: Introduce CompressibleString Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/fetch/ScriptResource.h
diff --git a/third_party/WebKit/Source/core/fetch/ScriptResource.h b/third_party/WebKit/Source/core/fetch/ScriptResource.h
index 86dfc6bc4b6bc64f012f151a74cace459a527fd2..f421e1aaee3185c9cdbef8134b40a099949aeb5d 100644
--- a/third_party/WebKit/Source/core/fetch/ScriptResource.h
+++ b/third_party/WebKit/Source/core/fetch/ScriptResource.h
@@ -29,6 +29,7 @@
#include "core/CoreExport.h"
#include "core/fetch/ResourceClient.h"
#include "core/fetch/TextResource.h"
+#include "wtf/text/CompressableString.h"
namespace blink {
@@ -57,7 +58,7 @@ public:
void didAddClient(ResourceClient*) override;
void appendData(const char*, unsigned) override;
- const String& script();
+ RefPtrWillBeRawPtr<CompressableString> script();
esprehn 2015/10/24 03:59:25 not a ref ptr
AtomicString mimeType() const;
@@ -84,7 +85,7 @@ private:
bool m_integrityChecked;
String m_integrityMetadata;
- AtomicString m_script;
+ RefPtrWillBeMember<CompressableString> m_script;
esprehn 2015/10/24 03:59:25 By making these not atomic strings you lose the de
};
DEFINE_RESOURCE_TYPE_CASTS(Script);

Powered by Google App Engine
This is Rietveld 408576698