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

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

Issue 15462003: Update references to Blink's Platform API headers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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
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_client.h" 5 #include "content/renderer/devtools/devtools_client.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
10 #include "content/common/devtools_messages.h" 10 #include "content/common/devtools_messages.h"
11 #include "content/public/common/content_switches.h" 11 #include "content/public/common/content_switches.h"
12 #include "content/public/common/url_constants.h" 12 #include "content/public/common/url_constants.h"
13 #include "content/renderer/render_thread_impl.h" 13 #include "content/renderer/render_thread_impl.h"
14 #include "content/renderer/render_view_impl.h" 14 #include "content/renderer/render_view_impl.h"
15 #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h" 15 #include "third_party/WebKit/public/platform/WebFloatPoint.h"
16 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" 16 #include "third_party/WebKit/public/platform/WebString.h"
17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsFrontend.h " 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsFrontend.h "
18 #include "ui/base/ui_base_switches.h" 18 #include "ui/base/ui_base_switches.h"
19 #include "webkit/appcache/appcache_interfaces.h" 19 #include "webkit/appcache/appcache_interfaces.h"
20 20
21 using WebKit::WebDevToolsFrontend; 21 using WebKit::WebDevToolsFrontend;
22 using WebKit::WebString; 22 using WebKit::WebString;
23 23
24 namespace content { 24 namespace content {
25 25
26 namespace { 26 namespace {
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 web_tools_frontend_->dispatchOnInspectorFrontend( 123 web_tools_frontend_->dispatchOnInspectorFrontend(
124 WebString::fromUTF8(message)); 124 WebString::fromUTF8(message));
125 } 125 }
126 126
127 // static 127 // static
128 void DevToolsClient::EnableDevToolsFrontendTesting() { 128 void DevToolsClient::EnableDevToolsFrontendTesting() {
129 g_devtools_frontend_testing_enabled = true; 129 g_devtools_frontend_testing_enabled = true;
130 } 130 }
131 131
132 } // namespace content 132 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/devtools/devtools_agent_filter.cc ('k') | content/renderer/disambiguation_popup_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698