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

Side by Side Diff: Source/core/xml/XMLTreeViewer.cpp

Issue 330933002: Revert of Removing "using" declarations that import names in the C++ Standard library. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * 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 * 10 *
(...skipping 21 matching lines...) Expand all
32 #include "XMLViewerCSS.h" 32 #include "XMLViewerCSS.h"
33 #include "XMLViewerJS.h" 33 #include "XMLViewerJS.h"
34 #include "bindings/v8/ExceptionStatePlaceholder.h" 34 #include "bindings/v8/ExceptionStatePlaceholder.h"
35 #include "bindings/v8/ScriptController.h" 35 #include "bindings/v8/ScriptController.h"
36 #include "bindings/v8/ScriptSourceCode.h" 36 #include "bindings/v8/ScriptSourceCode.h"
37 #include "core/dom/Document.h" 37 #include "core/dom/Document.h"
38 #include "core/dom/Element.h" 38 #include "core/dom/Element.h"
39 #include "core/dom/Text.h" 39 #include "core/dom/Text.h"
40 #include "core/frame/LocalFrame.h" 40 #include "core/frame/LocalFrame.h"
41 41
42 using namespace std;
43
42 namespace WebCore { 44 namespace WebCore {
43 45
44 XMLTreeViewer::XMLTreeViewer(Document* document) 46 XMLTreeViewer::XMLTreeViewer(Document* document)
45 : m_document(document) 47 : m_document(document)
46 { 48 {
47 } 49 }
48 50
49 void XMLTreeViewer::transformDocumentToTreeView() 51 void XMLTreeViewer::transformDocumentToTreeView()
50 { 52 {
51 m_document->setIsViewSource(true); 53 m_document->setIsViewSource(true);
52 String scriptString(reinterpret_cast<const char*>(XMLViewer_js), sizeof(XMLV iewer_js)); 54 String scriptString(reinterpret_cast<const char*>(XMLViewer_js), sizeof(XMLV iewer_js));
53 m_document->frame()->script().executeScriptInMainWorld(scriptString, ScriptC ontroller::ExecuteScriptWhenScriptsDisabled); 55 m_document->frame()->script().executeScriptInMainWorld(scriptString, ScriptC ontroller::ExecuteScriptWhenScriptsDisabled);
54 String noStyleMessage("This XML file does not appear to have any style infor mation associated with it. The document tree is shown below."); 56 String noStyleMessage("This XML file does not appear to have any style infor mation associated with it. The document tree is shown below.");
55 m_document->frame()->script().executeScriptInMainWorld("prepareWebKitXMLView er('" + noStyleMessage + "');", ScriptController::ExecuteScriptWhenScriptsDisabl ed); 57 m_document->frame()->script().executeScriptInMainWorld("prepareWebKitXMLView er('" + noStyleMessage + "');", ScriptController::ExecuteScriptWhenScriptsDisabl ed);
56 58
57 String cssString(reinterpret_cast<const char*>(XMLViewer_css), sizeof(XMLVie wer_css)); 59 String cssString(reinterpret_cast<const char*>(XMLViewer_css), sizeof(XMLVie wer_css));
58 m_document->getElementById("xml-viewer-style")->appendChild(m_document->crea teTextNode(cssString), IGNORE_EXCEPTION); 60 m_document->getElementById("xml-viewer-style")->appendChild(m_document->crea teTextNode(cssString), IGNORE_EXCEPTION);
59 } 61 }
60 62
61 } // namespace WebCore 63 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/svg/animation/SVGSMILElement.cpp ('k') | Source/core/xml/parser/XMLDocumentParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698