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

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

Issue 329183002: Removing "using" declarations that import names in the C++ Standard library. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed Trybot Errors 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
44 namespace WebCore { 42 namespace WebCore {
45 43
46 XMLTreeViewer::XMLTreeViewer(Document* document) 44 XMLTreeViewer::XMLTreeViewer(Document* document)
47 : m_document(document) 45 : m_document(document)
48 { 46 {
49 } 47 }
50 48
51 void XMLTreeViewer::transformDocumentToTreeView() 49 void XMLTreeViewer::transformDocumentToTreeView()
52 { 50 {
53 m_document->setIsViewSource(true); 51 m_document->setIsViewSource(true);
54 String scriptString(reinterpret_cast<const char*>(XMLViewer_js), sizeof(XMLV iewer_js)); 52 String scriptString(reinterpret_cast<const char*>(XMLViewer_js), sizeof(XMLV iewer_js));
55 m_document->frame()->script().executeScriptInMainWorld(scriptString, ScriptC ontroller::ExecuteScriptWhenScriptsDisabled); 53 m_document->frame()->script().executeScriptInMainWorld(scriptString, ScriptC ontroller::ExecuteScriptWhenScriptsDisabled);
56 String noStyleMessage("This XML file does not appear to have any style infor mation associated with it. The document tree is shown below."); 54 String noStyleMessage("This XML file does not appear to have any style infor mation associated with it. The document tree is shown below.");
57 m_document->frame()->script().executeScriptInMainWorld("prepareWebKitXMLView er('" + noStyleMessage + "');", ScriptController::ExecuteScriptWhenScriptsDisabl ed); 55 m_document->frame()->script().executeScriptInMainWorld("prepareWebKitXMLView er('" + noStyleMessage + "');", ScriptController::ExecuteScriptWhenScriptsDisabl ed);
58 56
59 String cssString(reinterpret_cast<const char*>(XMLViewer_css), sizeof(XMLVie wer_css)); 57 String cssString(reinterpret_cast<const char*>(XMLViewer_css), sizeof(XMLVie wer_css));
60 m_document->getElementById("xml-viewer-style")->appendChild(m_document->crea teTextNode(cssString), IGNORE_EXCEPTION); 58 m_document->getElementById("xml-viewer-style")->appendChild(m_document->crea teTextNode(cssString), IGNORE_EXCEPTION);
61 } 59 }
62 60
63 } // namespace WebCore 61 } // 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