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

Side by Side Diff: third_party/WebKit/Source/web/WebSerializedScriptValue.cpp

Issue 2883793003: Move detached files from web/ to (core/modules)/exported. (Closed)
Patch Set: Created 3 years, 7 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
OLDNEW
(Empty)
1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #include "public/web/WebSerializedScriptValue.h"
32
33 #include "bindings/core/v8/ExceptionState.h"
34 #include "bindings/core/v8/serialization/SerializedScriptValue.h"
35 #include "bindings/core/v8/serialization/SerializedScriptValueFactory.h"
36 #include "public/platform/WebString.h"
37
38 namespace blink {
39
40 WebSerializedScriptValue WebSerializedScriptValue::FromString(
41 const WebString& s) {
42 return SerializedScriptValue::Create(s);
43 }
44
45 WebSerializedScriptValue WebSerializedScriptValue::Serialize(
46 v8::Isolate* isolate,
47 v8::Local<v8::Value> value) {
48 DummyExceptionStateForTesting exception_state;
49 WebSerializedScriptValue serialized_value = SerializedScriptValue::Serialize(
50 isolate, value, SerializedScriptValue::SerializeOptions(),
51 exception_state);
52 if (exception_state.HadException())
53 return CreateInvalid();
54 return serialized_value;
55 }
56
57 WebSerializedScriptValue WebSerializedScriptValue::CreateInvalid() {
58 return SerializedScriptValue::Create();
59 }
60
61 void WebSerializedScriptValue::Reset() {
62 private_.Reset();
63 }
64
65 void WebSerializedScriptValue::Assign(const WebSerializedScriptValue& other) {
66 private_ = other.private_;
67 }
68
69 WebString WebSerializedScriptValue::ToString() const {
70 return private_->ToWireString();
71 }
72
73 v8::Local<v8::Value> WebSerializedScriptValue::Deserialize(
74 v8::Isolate* isolate) {
75 return private_->Deserialize(isolate);
76 }
77
78 WebSerializedScriptValue::WebSerializedScriptValue(
79 PassRefPtr<SerializedScriptValue> value)
80 : private_(value) {}
81
82 WebSerializedScriptValue& WebSerializedScriptValue::operator=(
83 PassRefPtr<SerializedScriptValue> value) {
84 private_ = value;
85 return *this;
86 }
87
88 WebSerializedScriptValue::operator PassRefPtr<SerializedScriptValue>() const {
89 return private_.Get();
90 }
91
92 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698