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

Side by Side Diff: Source/web/WebDevToolsAgentImpl.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/xml/parser/XMLDocumentParser.cpp ('k') | Source/web/WebPagePopupImpl.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) 2010-2011 Google Inc. All rights reserved. 2 * Copyright (C) 2010-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 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 #include "public/web/WebViewClient.h" 68 #include "public/web/WebViewClient.h"
69 #include "web/WebInputEventConversion.h" 69 #include "web/WebInputEventConversion.h"
70 #include "web/WebLocalFrameImpl.h" 70 #include "web/WebLocalFrameImpl.h"
71 #include "web/WebViewImpl.h" 71 #include "web/WebViewImpl.h"
72 #include "wtf/CurrentTime.h" 72 #include "wtf/CurrentTime.h"
73 #include "wtf/MathExtras.h" 73 #include "wtf/MathExtras.h"
74 #include "wtf/Noncopyable.h" 74 #include "wtf/Noncopyable.h"
75 #include "wtf/text/WTFString.h" 75 #include "wtf/text/WTFString.h"
76 76
77 using namespace WebCore; 77 using namespace WebCore;
78 using namespace std;
79 78
80 namespace OverlayZOrders { 79 namespace OverlayZOrders {
81 // Use 99 as a big z-order number so that highlight is above other overlays. 80 // Use 99 as a big z-order number so that highlight is above other overlays.
82 static const int highlight = 99; 81 static const int highlight = 99;
83 } 82 }
84 83
85 namespace blink { 84 namespace blink {
86 85
87 class ClientMessageLoopAdapter : public PageScriptDebugServer::ClientMessageLoop { 86 class ClientMessageLoopAdapter : public PageScriptDebugServer::ClientMessageLoop {
88 public: 87 public:
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after
722 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_removeBreakpointCmd) 721 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_removeBreakpointCmd)
723 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointsActiveCmd); 722 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointsActiveCmd);
724 } 723 }
725 724
726 void WebDevToolsAgent::processPendingMessages() 725 void WebDevToolsAgent::processPendingMessages()
727 { 726 {
728 PageScriptDebugServer::shared().runPendingTasks(); 727 PageScriptDebugServer::shared().runPendingTasks();
729 } 728 }
730 729
731 } // namespace blink 730 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/xml/parser/XMLDocumentParser.cpp ('k') | Source/web/WebPagePopupImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698