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

Side by Side Diff: Source/modules/serviceworkers/Response.h

Issue 180843003: Start to implement FetchEvent for ServiceWorker (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: patch for landing Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef Response_h
6 #define Response_h
7
8 #include "bindings/v8/Dictionary.h"
9 #include "bindings/v8/ScriptWrappable.h"
10 #include "wtf/RefCounted.h"
11 #include "wtf/text/WTFString.h"
12
13 namespace WebCore {
14
15 struct ResponseInit;
16
17 class Response FINAL : public ScriptWrappable, public RefCounted<Response> {
18 public:
19 static PassRefPtr<Response> create();
20 static PassRefPtr<Response> create(const Dictionary& responseInit);
21 ~Response() { };
22
23 unsigned short statusCode() { return m_statusCode; }
24 void setStatusCode(unsigned short statusCode) { m_statusCode = statusCode; }
25
26 String statusText() { return m_statusText; }
27 void setStatusText(const String& statusText) { m_statusText = statusText; }
28
29 String method() { return m_method; }
30 void setMethod(const String& method) { m_method = method; }
31
32 Dictionary* headers();
33 void headers(const Dictionary&);
34
35 private:
36 explicit Response(const ResponseInit&);
37 unsigned short m_statusCode;
38 String m_statusText;
39 String m_method;
40 Dictionary m_headers;
41 };
42
43 } // namespace WebCore
44
45 #endif // Response_h
OLDNEW
« no previous file with comments | « Source/modules/serviceworkers/RespondWithObserver.cpp ('k') | Source/modules/serviceworkers/Response.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698