| OLD | NEW |
| 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 "chrome/browser/ui/tab_contents/core_tab_helper.h" | 5 #include "chrome/browser/ui/tab_contents/core_tab_helper.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| 11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram.h" |
| 12 #include "base/strings/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
| 13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
| 14 #include "chrome/browser/renderer_host/web_cache_manager.h" | 14 #include "chrome/browser/renderer_host/web_cache_manager.h" |
| 15 #include "chrome/browser/search_engines/search_terms_data.h" | |
| 16 #include "chrome/browser/search_engines/template_url.h" | 15 #include "chrome/browser/search_engines/template_url.h" |
| 17 #include "chrome/browser/search_engines/template_url_service.h" | 16 #include "chrome/browser/search_engines/template_url_service.h" |
| 18 #include "chrome/browser/search_engines/template_url_service_factory.h" | 17 #include "chrome/browser/search_engines/template_url_service_factory.h" |
| 19 #include "chrome/browser/ui/browser.h" | 18 #include "chrome/browser/ui/browser.h" |
| 20 #include "chrome/browser/ui/browser_command_controller.h" | 19 #include "chrome/browser/ui/browser_command_controller.h" |
| 21 #include "chrome/browser/ui/browser_finder.h" | 20 #include "chrome/browser/ui/browser_finder.h" |
| 22 #include "chrome/common/chrome_switches.h" | 21 #include "chrome/common/chrome_switches.h" |
| 23 #include "chrome/common/render_messages.h" | 22 #include "chrome/common/render_messages.h" |
| 24 #include "content/public/browser/render_process_host.h" | 23 #include "content/public/browser/render_process_host.h" |
| 25 #include "content/public/browser/render_view_host.h" | 24 #include "content/public/browser/render_view_host.h" |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 DCHECK(!content_type.empty()); | 249 DCHECK(!content_type.empty()); |
| 251 open_url_params.uses_post = true; | 250 open_url_params.uses_post = true; |
| 252 open_url_params.browser_initiated_post_data = | 251 open_url_params.browser_initiated_post_data = |
| 253 base::RefCountedString::TakeString(post_data); | 252 base::RefCountedString::TakeString(post_data); |
| 254 open_url_params.extra_headers += base::StringPrintf( | 253 open_url_params.extra_headers += base::StringPrintf( |
| 255 "%s: %s\r\n", net::HttpRequestHeaders::kContentType, | 254 "%s: %s\r\n", net::HttpRequestHeaders::kContentType, |
| 256 content_type.c_str()); | 255 content_type.c_str()); |
| 257 } | 256 } |
| 258 web_contents()->OpenURL(open_url_params); | 257 web_contents()->OpenURL(open_url_params); |
| 259 } | 258 } |
| OLD | NEW |