Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 class Response FINAL : public ScriptWrappable, public RefCounted<Response> { | |
| 16 public: | |
| 17 static PassRefPtr<Response> create(); | |
| 18 static PassRefPtr<Response> create(const Dictionary&); | |
|
kinuko
2014/02/26 05:42:49
nit: can you also write the param name (responseIn
falken
2014/02/27 06:45:09
Done.
| |
| 19 ~Response() { }; | |
| 20 | |
| 21 unsigned short statusCode() { return m_statusCode; } | |
| 22 void setStatusCode(unsigned short statusCode) { m_statusCode = statusCode; } | |
| 23 | |
| 24 String statusText() { return m_statusText; } | |
| 25 void setStatusText(const String& statusText) { m_statusText = statusText; } | |
| 26 | |
| 27 String method() { return m_method; } | |
| 28 void setMethod(const String& method) { m_method = method; } | |
| 29 | |
| 30 Dictionary* headers(); | |
| 31 void headers(const Dictionary&); | |
| 32 | |
| 33 private: | |
| 34 Response(); | |
| 35 unsigned short m_statusCode; | |
| 36 String m_statusText; | |
| 37 String m_method; | |
| 38 Dictionary m_headers; | |
| 39 }; | |
| 40 | |
| 41 } // namespace WebCore | |
| 42 | |
| 43 #endif // Response_h | |
| OLD | NEW |