| Index: third_party/WebKit/Source/platform/SerializedResource.h
|
| diff --git a/third_party/WebKit/Source/platform/SerializedResource.h b/third_party/WebKit/Source/platform/SerializedResource.h
|
| index eb15f690b3f2f5dca4baea74972a106328314ddf..4e64591c830189e54f373c9457ff297e42086578 100644
|
| --- a/third_party/WebKit/Source/platform/SerializedResource.h
|
| +++ b/third_party/WebKit/Source/platform/SerializedResource.h
|
| @@ -42,9 +42,9 @@ struct SerializedResource {
|
| DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
|
| KURL url;
|
| String mimeType;
|
| - RefPtr<SharedBuffer> data;
|
| + RefPtr<const SharedBuffer> data;
|
|
|
| - SerializedResource(const KURL& url, const String& mimeType, PassRefPtr<SharedBuffer> data)
|
| + SerializedResource(const KURL& url, const String& mimeType, PassRefPtr<const SharedBuffer> data)
|
| : url(url)
|
| , mimeType(mimeType)
|
| , data(data)
|
|
|