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

Unified Diff: third_party/WebKit/Source/modules/fetch/FetchRequestData.h

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CORE_EXPORT Created 5 years, 1 month 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/modules/fetch/FetchRequestData.h
diff --git a/third_party/WebKit/Source/modules/fetch/FetchRequestData.h b/third_party/WebKit/Source/modules/fetch/FetchRequestData.h
index fd20e4fbef8bd0c052706fe924a94f7ecec3db15..af50d29b73b37f9e2d8bf1ccbdbc253a840ebb60 100644
--- a/third_party/WebKit/Source/modules/fetch/FetchRequestData.h
+++ b/third_party/WebKit/Source/modules/fetch/FetchRequestData.h
@@ -64,9 +64,9 @@ public:
Tainting tainting() const { return m_responseTainting; }
FetchHeaderList* headerList() const { return m_headerList.get(); }
void setHeaderList(FetchHeaderList* headerList) { m_headerList = headerList; }
- BodyStreamBuffer* buffer() const { return m_buffer; }
+ BodyStreamBuffer* buffer() const;
// Call Request::refreshBody() after calling setBuffer().
- void setBuffer(BodyStreamBuffer* buffer) { m_buffer = buffer; }
+ void setBuffer(BodyStreamBuffer*);
String mimeType() const { return m_mimeType; }
void setMIMEType(const String& type) { m_mimeType = type; }
String integrity() const { return m_integrity; }

Powered by Google App Engine
This is Rietveld 408576698