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

Side by Side Diff: third_party/WebKit/Source/core/xml/DocumentXMLTreeViewer.cpp

Issue 2562093002: Move DocumentXMLTreeViewer off of private script (Closed)
Patch Set: Use V8PerIsolateData::mainThreadIsolate() Created 4 years 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 // Copyright 2016 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 #include "core/xml/DocumentXMLTreeViewer.h"
6
7 #include "bindings/core/v8/DOMWrapperWorld.h"
8 #include "bindings/core/v8/ScriptController.h"
9 #include "bindings/core/v8/ScriptSourceCode.h"
10 #include "bindings/core/v8/V8PerIsolateData.h"
11 #include "core/dom/Document.h"
12 #include "core/dom/Element.h"
13 #include "core/frame/LocalFrame.h"
14 #include "platform/PlatformResourceLoader.h"
15
16 namespace blink {
17
18 void transformDocumentToXMLTreeView(Document& document) {
19 String scriptString = loadResourceAsASCIIString("DocumentXMLTreeViewer.js");
20 String cssString = loadResourceAsASCIIString("DocumentXMLTreeViewer.css");
21
22 HeapVector<ScriptSourceCode> sources;
23 sources.append(ScriptSourceCode(scriptString));
24 v8::HandleScope handleScope(V8PerIsolateData::mainThreadIsolate());
25
26 document.frame()->script().executeScriptInIsolatedWorld(
27 WorldIdConstants::DocumentXMLTreeViewerWorldId, sources, 0, nullptr);
28
29 Element* element = document.getElementById("xml-viewer-style");
30 if (element) {
31 element->setTextContent(cssString);
32 }
33 }
34
35 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698