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

Side by Side Diff: Source/core/testing/v8/WebCoreTestSupport.cpp

Issue 1103273014: Replace v8::Handle with v8::Local in core/testing/* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
« no previous file with comments | « Source/core/testing/PrivateScriptTest.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 23 matching lines...) Expand all
34 #include "core/testing/Internals.h" 34 #include "core/testing/Internals.h"
35 35
36 using namespace blink; 36 using namespace blink;
37 37
38 namespace WebCoreTestSupport { 38 namespace WebCoreTestSupport {
39 39
40 void injectInternalsObject(v8::Local<v8::Context> context) 40 void injectInternalsObject(v8::Local<v8::Context> context)
41 { 41 {
42 ScriptState* scriptState = ScriptState::from(context); 42 ScriptState* scriptState = ScriptState::from(context);
43 ScriptState::Scope scope(scriptState); 43 ScriptState::Scope scope(scriptState);
44 v8::Handle<v8::Object> global = scriptState->context()->Global(); 44 v8::Local<v8::Object> global = scriptState->context()->Global();
45 ExecutionContext* executionContext = scriptState->executionContext(); 45 ExecutionContext* executionContext = scriptState->executionContext();
46 if (executionContext->isDocument()) 46 if (executionContext->isDocument())
47 global->Set(v8AtomicString(scriptState->isolate(), Internals::internalsI d), toV8(Internals::create(toDocument(executionContext)), global, scriptState->i solate())); 47 global->Set(v8AtomicString(scriptState->isolate(), Internals::internalsI d), toV8(Internals::create(toDocument(executionContext)), global, scriptState->i solate()));
48 } 48 }
49 49
50 void resetInternalsObject(v8::Local<v8::Context> context) 50 void resetInternalsObject(v8::Local<v8::Context> context)
51 { 51 {
52 // This can happen if JavaScript is disabled in the main frame. 52 // This can happen if JavaScript is disabled in the main frame.
53 if (context.IsEmpty()) 53 if (context.IsEmpty())
54 return; 54 return;
55 55
56 ScriptState* scriptState = ScriptState::from(context); 56 ScriptState* scriptState = ScriptState::from(context);
57 ScriptState::Scope scope(scriptState); 57 ScriptState::Scope scope(scriptState);
58 Page* page = toDocument(scriptState->executionContext())->frame()->page(); 58 Page* page = toDocument(scriptState->executionContext())->frame()->page();
59 ASSERT(page); 59 ASSERT(page);
60 Internals::resetToConsistentState(page); 60 Internals::resetToConsistentState(page);
61 InternalSettings::from(*page)->resetToConsistentState(); 61 InternalSettings::from(*page)->resetToConsistentState();
62 } 62 }
63 63
64 } 64 }
OLDNEW
« no previous file with comments | « Source/core/testing/PrivateScriptTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698