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/template_url_service_factory.h" | 15 #include "chrome/browser/search_engines/template_url_service_factory.h" |
16 #include "chrome/browser/ui/browser.h" | 16 #include "chrome/browser/ui/browser.h" |
17 #include "chrome/browser/ui/browser_command_controller.h" | 17 #include "chrome/browser/ui/browser_command_controller.h" |
18 #include "chrome/browser/ui/browser_finder.h" | 18 #include "chrome/browser/ui/browser_finder.h" |
19 #include "chrome/common/chrome_switches.h" | 19 #include "chrome/common/chrome_switches.h" |
20 #include "chrome/common/render_messages.h" | 20 #include "chrome/common/render_messages.h" |
| 21 #include "chrome/grit/generated_resources.h" |
21 #include "components/search_engines/template_url.h" | 22 #include "components/search_engines/template_url.h" |
22 #include "components/search_engines/template_url_service.h" | 23 #include "components/search_engines/template_url_service.h" |
23 #include "content/public/browser/render_process_host.h" | 24 #include "content/public/browser/render_process_host.h" |
24 #include "content/public/browser/render_view_host.h" | 25 #include "content/public/browser/render_view_host.h" |
25 #include "content/public/browser/web_contents.h" | 26 #include "content/public/browser/web_contents.h" |
26 #include "grit/generated_resources.h" | |
27 #include "net/base/load_states.h" | 27 #include "net/base/load_states.h" |
28 #include "net/http/http_request_headers.h" | 28 #include "net/http/http_request_headers.h" |
29 #include "third_party/skia/include/core/SkBitmap.h" | 29 #include "third_party/skia/include/core/SkBitmap.h" |
30 #include "ui/base/l10n/l10n_util.h" | 30 #include "ui/base/l10n/l10n_util.h" |
31 #include "ui/gfx/codec/jpeg_codec.h" | 31 #include "ui/gfx/codec/jpeg_codec.h" |
32 | 32 |
33 using content::WebContents; | 33 using content::WebContents; |
34 | 34 |
35 DEFINE_WEB_CONTENTS_USER_DATA_KEY(CoreTabHelper); | 35 DEFINE_WEB_CONTENTS_USER_DATA_KEY(CoreTabHelper); |
36 | 36 |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 DCHECK(!content_type.empty()); | 249 DCHECK(!content_type.empty()); |
250 open_url_params.uses_post = true; | 250 open_url_params.uses_post = true; |
251 open_url_params.browser_initiated_post_data = | 251 open_url_params.browser_initiated_post_data = |
252 base::RefCountedString::TakeString(post_data); | 252 base::RefCountedString::TakeString(post_data); |
253 open_url_params.extra_headers += base::StringPrintf( | 253 open_url_params.extra_headers += base::StringPrintf( |
254 "%s: %s\r\n", net::HttpRequestHeaders::kContentType, | 254 "%s: %s\r\n", net::HttpRequestHeaders::kContentType, |
255 content_type.c_str()); | 255 content_type.c_str()); |
256 } | 256 } |
257 web_contents()->OpenURL(open_url_params); | 257 web_contents()->OpenURL(open_url_params); |
258 } | 258 } |
OLD | NEW |