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

Side by Side Diff: content/browser/devtools/devtools_http_handler_impl.cc

Issue 11788003: Update some #includes in content/browser/ for headers in the new Platform (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
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/browser/devtools/devtools_http_handler_impl.h" 5 #include "content/browser/devtools/devtools_http_handler_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 26 matching lines...) Expand all
37 #include "content/public/browser/render_view_host.h" 37 #include "content/public/browser/render_view_host.h"
38 #include "content/public/browser/render_widget_host.h" 38 #include "content/public/browser/render_widget_host.h"
39 #include "content/public/common/content_client.h" 39 #include "content/public/common/content_client.h"
40 #include "content/public/common/url_constants.h" 40 #include "content/public/common/url_constants.h"
41 #include "googleurl/src/gurl.h" 41 #include "googleurl/src/gurl.h"
42 #include "grit/devtools_resources_map.h" 42 #include "grit/devtools_resources_map.h"
43 #include "net/base/escape.h" 43 #include "net/base/escape.h"
44 #include "net/base/io_buffer.h" 44 #include "net/base/io_buffer.h"
45 #include "net/base/ip_endpoint.h" 45 #include "net/base/ip_endpoint.h"
46 #include "net/server/http_server_request_info.h" 46 #include "net/server/http_server_request_info.h"
47 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
47 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgent.h" 48 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgent.h"
48 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
49 #include "ui/base/layout.h" 49 #include "ui/base/layout.h"
50 #include "webkit/user_agent/user_agent.h" 50 #include "webkit/user_agent/user_agent.h"
51 #include "webkit/user_agent/user_agent_util.h" 51 #include "webkit/user_agent/user_agent_util.h"
52 52
53 namespace content { 53 namespace content {
54 54
55 const int kBufferSize = 16 * 1024; 55 const int kBufferSize = 16 * 1024;
56 56
57 namespace { 57 namespace {
58 58
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after
869 page_info.id.c_str())); 869 page_info.id.c_str()));
870 std::string devtools_frontend_url = GetFrontendURLInternal( 870 std::string devtools_frontend_url = GetFrontendURLInternal(
871 page_info.id.c_str(), 871 page_info.id.c_str(),
872 host); 872 host);
873 dictionary->SetString("devtoolsFrontendUrl", devtools_frontend_url); 873 dictionary->SetString("devtoolsFrontendUrl", devtools_frontend_url);
874 } 874 }
875 return dictionary; 875 return dictionary;
876 } 876 }
877 877
878 } // namespace content 878 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/accessibility/browser_accessibility_cocoa.mm ('k') | content/browser/devtools/worker_devtools_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698