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

Side by Side Diff: Source/bindings/core/v8/custom/V8PopStateEventCustom.cpp

Issue 537403002: bindings: Renames from/toInternalPointer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 3 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
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 void V8PopStateEvent::stateAttributeGetterCustom(const v8::PropertyCallbackInfo< v8::Value>& info) 49 void V8PopStateEvent::stateAttributeGetterCustom(const v8::PropertyCallbackInfo< v8::Value>& info)
50 { 50 {
51 v8::Handle<v8::Value> result = V8HiddenValue::getHiddenValue(info.GetIsolate (), info.Holder(), V8HiddenValue::state(info.GetIsolate())); 51 v8::Handle<v8::Value> result = V8HiddenValue::getHiddenValue(info.GetIsolate (), info.Holder(), V8HiddenValue::state(info.GetIsolate()));
52 52
53 if (!result.IsEmpty()) { 53 if (!result.IsEmpty()) {
54 v8SetReturnValue(info, result); 54 v8SetReturnValue(info, result);
55 return; 55 return;
56 } 56 }
57 57
58 PopStateEvent* event = V8PopStateEvent::toNative(info.Holder()); 58 PopStateEvent* event = V8PopStateEvent::toImpl(info.Holder());
59 History* history = event->history(); 59 History* history = event->history();
60 if (!history || !event->serializedState()) { 60 if (!history || !event->serializedState()) {
61 if (!event->serializedState()) { 61 if (!event->serializedState()) {
62 // If we're in an isolated world and the event was created in the ma in world, 62 // If we're in an isolated world and the event was created in the ma in world,
63 // we need to find the 'state' property on the main world wrapper an d clone it. 63 // we need to find the 'state' property on the main world wrapper an d clone it.
64 v8::Local<v8::Value> mainWorldState = V8HiddenValue::getHiddenValueF romMainWorldWrapper(info.GetIsolate(), event, V8HiddenValue::state(info.GetIsola te())); 64 v8::Local<v8::Value> mainWorldState = V8HiddenValue::getHiddenValueF romMainWorldWrapper(info.GetIsolate(), event, V8HiddenValue::state(info.GetIsola te()));
65 if (!mainWorldState.IsEmpty()) 65 if (!mainWorldState.IsEmpty())
66 event->setSerializedState(SerializedScriptValue::createAndSwallo wExceptions(mainWorldState, info.GetIsolate())); 66 event->setSerializedState(SerializedScriptValue::createAndSwallo wExceptions(mainWorldState, info.GetIsolate()));
67 } 67 }
68 if (event->serializedState()) 68 if (event->serializedState())
(...skipping 24 matching lines...) Expand all
93 result = event->serializedState()->deserialize(info.GetIsolate()); 93 result = event->serializedState()->deserialize(info.GetIsolate());
94 V8HiddenValue::setHiddenValue(info.GetIsolate(), v8History, V8HiddenValu e::state(info.GetIsolate()), result); 94 V8HiddenValue::setHiddenValue(info.GetIsolate(), v8History, V8HiddenValu e::state(info.GetIsolate()), result);
95 } else { 95 } else {
96 result = event->serializedState()->deserialize(info.GetIsolate()); 96 result = event->serializedState()->deserialize(info.GetIsolate());
97 } 97 }
98 98
99 v8SetReturnValue(info, cacheState(info.Holder(), result, info.GetIsolate())) ; 99 v8SetReturnValue(info, cacheState(info.Holder(), result, info.GetIsolate())) ;
100 } 100 }
101 101
102 } // namespace blink 102 } // namespace blink
OLDNEW
« no previous file with comments | « Source/bindings/core/v8/custom/V8MutationObserverCustom.cpp ('k') | Source/bindings/core/v8/custom/V8TrackEventCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698