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

Side by Side Diff: Source/core/dom/Document.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
« no previous file with comments | « Source/core/dom/ContainerNode.cpp ('k') | Source/core/dom/Node.cpp » ('j') | 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 #include "platform/weborigin/SecurityOrigin.h" 191 #include "platform/weborigin/SecurityOrigin.h"
192 #include "public/platform/Platform.h" 192 #include "public/platform/Platform.h"
193 #include "wtf/CurrentTime.h" 193 #include "wtf/CurrentTime.h"
194 #include "wtf/HashFunctions.h" 194 #include "wtf/HashFunctions.h"
195 #include "wtf/MainThread.h" 195 #include "wtf/MainThread.h"
196 #include "wtf/StdLibExtras.h" 196 #include "wtf/StdLibExtras.h"
197 #include "wtf/TemporaryChange.h" 197 #include "wtf/TemporaryChange.h"
198 #include "wtf/text/StringBuffer.h" 198 #include "wtf/text/StringBuffer.h"
199 #include "wtf/text/TextEncodingRegistry.h" 199 #include "wtf/text/TextEncodingRegistry.h"
200 200
201 using namespace std;
202 using namespace WTF; 201 using namespace WTF;
203 using namespace Unicode; 202 using namespace Unicode;
204 203
205 namespace WebCore { 204 namespace WebCore {
206 205
207 using namespace HTMLNames; 206 using namespace HTMLNames;
208 207
209 static const unsigned cMaxWriteRecursionDepth = 21; 208 static const unsigned cMaxWriteRecursionDepth = 21;
210 209
211 // This amount of time must have elapsed before we will even consider scheduling a layout without a delay. 210 // This amount of time must have elapsed before we will even consider scheduling a layout without a delay.
(...skipping 5626 matching lines...) Expand 10 before | Expand all | Expand 10 after
5838 visitor->trace(m_compositorPendingAnimations); 5837 visitor->trace(m_compositorPendingAnimations);
5839 visitor->trace(m_contextDocument); 5838 visitor->trace(m_contextDocument);
5840 visitor->registerWeakMembers<Document, &Document::clearWeakMembers>(this); 5839 visitor->registerWeakMembers<Document, &Document::clearWeakMembers>(this);
5841 DocumentSupplementable::trace(visitor); 5840 DocumentSupplementable::trace(visitor);
5842 TreeScope::trace(visitor); 5841 TreeScope::trace(visitor);
5843 ContainerNode::trace(visitor); 5842 ContainerNode::trace(visitor);
5844 ExecutionContext::trace(visitor); 5843 ExecutionContext::trace(visitor);
5845 } 5844 }
5846 5845
5847 } // namespace WebCore 5846 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/ContainerNode.cpp ('k') | Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698