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

Side by Side Diff: content/renderer/devtools/devtools_agent.cc

Issue 11826038: Update some #includes in content/renderer/devtools for headers in the new Platform directory (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/renderer/devtools/devtools_agent_filter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/devtools/devtools_agent.h" 5 #include "content/renderer/devtools/devtools_agent.h"
6 6
7 #include <map> 7 #include <map>
8 8
9 #include "base/lazy_instance.h" 9 #include "base/lazy_instance.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
11 #include "base/process.h" 11 #include "base/process.h"
12 #include "base/string_number_conversions.h" 12 #include "base/string_number_conversions.h"
13 #include "content/common/devtools_messages.h" 13 #include "content/common/devtools_messages.h"
14 #include "content/common/view_messages.h" 14 #include "content/common/view_messages.h"
15 #include "content/renderer/devtools/devtools_agent_filter.h" 15 #include "content/renderer/devtools/devtools_agent_filter.h"
16 #include "content/renderer/devtools/devtools_client.h" 16 #include "content/renderer/devtools/devtools_client.h"
17 #include "content/renderer/render_view_impl.h" 17 #include "content/renderer/render_view_impl.h"
18 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h"
19 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h"
19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h"
20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgent.h" 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgent.h"
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
23 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebPoint.h"
24 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
25 25
26 #if defined(USE_TCMALLOC) 26 #if defined(USE_TCMALLOC)
27 #include "third_party/tcmalloc/chromium/src/gperftools/heap-profiler.h" 27 #include "third_party/tcmalloc/chromium/src/gperftools/heap-profiler.h"
28 #endif 28 #endif
29 29
30 using WebKit::WebConsoleMessage; 30 using WebKit::WebConsoleMessage;
31 using WebKit::WebDevToolsAgent; 31 using WebKit::WebDevToolsAgent;
32 using WebKit::WebDevToolsAgentClient; 32 using WebKit::WebDevToolsAgentClient;
33 using WebKit::WebFrame; 33 using WebKit::WebFrame;
34 using WebKit::WebPoint; 34 using WebKit::WebPoint;
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 if (!web_view) 236 if (!web_view)
237 return NULL; 237 return NULL;
238 return web_view->devToolsAgent(); 238 return web_view->devToolsAgent();
239 } 239 }
240 240
241 bool DevToolsAgent::IsAttached() { 241 bool DevToolsAgent::IsAttached() {
242 return is_attached_; 242 return is_attached_;
243 } 243 }
244 244
245 } // namespace content 245 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/renderer/devtools/devtools_agent_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698