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

Side by Side Diff: chrome/browser/tab_contents/web_contents.cc

Issue 22002: Make autofill_manager compile on POSIX. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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 | « chrome/browser/browser.scons ('k') | chrome/chrome.xcodeproj/project.pbxproj » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/tab_contents/web_contents.h" 5 #include "chrome/browser/tab_contents/web_contents.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/file_version_info.h" 9 #include "base/file_version_info.h"
10 #include "base/process_util.h" 10 #include "base/process_util.h"
11 #include "base/string_util.h" 11 #include "base/string_util.h"
12 #include "chrome/app/locales/locale_settings.h" 12 #include "chrome/app/locales/locale_settings.h"
13 #include "chrome/browser/autofill_manager.h"
13 #include "chrome/browser/browser.h" 14 #include "chrome/browser/browser.h"
14 #include "chrome/browser/dom_operation_notification_details.h" 15 #include "chrome/browser/dom_operation_notification_details.h"
15 #include "chrome/browser/google_util.h" 16 #include "chrome/browser/google_util.h"
16 #include "chrome/browser/js_before_unload_handler.h" 17 #include "chrome/browser/js_before_unload_handler.h"
17 #include "chrome/browser/jsmessage_box_handler.h" 18 #include "chrome/browser/jsmessage_box_handler.h"
18 #include "chrome/browser/load_from_memory_cache_details.h" 19 #include "chrome/browser/load_from_memory_cache_details.h"
19 #include "chrome/browser/profile.h" 20 #include "chrome/browser/profile.h"
20 #include "chrome/browser/renderer_host/render_process_host.h" 21 #include "chrome/browser/renderer_host/render_process_host.h"
22 #include "chrome/browser/renderer_host/render_view_host.h"
21 #include "chrome/browser/search_engines/template_url_model.h" 23 #include "chrome/browser/search_engines/template_url_model.h"
22 #include "chrome/browser/tab_contents/provisional_load_details.h" 24 #include "chrome/browser/tab_contents/provisional_load_details.h"
23 #include "chrome/common/chrome_switches.h" 25 #include "chrome/common/chrome_switches.h"
24 #include "chrome/common/l10n_util.h" 26 #include "chrome/common/l10n_util.h"
25 #include "chrome/common/notification_service.h" 27 #include "chrome/common/notification_service.h"
26 #include "chrome/common/pref_names.h" 28 #include "chrome/common/pref_names.h"
27 #include "chrome/common/pref_service.h" 29 #include "chrome/common/pref_service.h"
28 #include "net/base/mime_util.h" 30 #include "net/base/mime_util.h"
29 #include "net/base/net_errors.h" 31 #include "net/base/net_errors.h"
30 #include "net/base/registry_controlled_domain.h" 32 #include "net/base/registry_controlled_domain.h"
31 #include "webkit/glue/webkit_glue.h" 33 #include "webkit/glue/webkit_glue.h"
32 34
33 #if defined(OS_WIN) 35 #if defined(OS_WIN)
34 // TODO(port): fill these in as we flesh out the implementation of this class 36 // TODO(port): fill these in as we flesh out the implementation of this class
35 #include "chrome/browser/autofill_manager.h"
36 #include "chrome/browser/bookmarks/bookmark_model.h" 37 #include "chrome/browser/bookmarks/bookmark_model.h"
37 #include "chrome/browser/cache_manager_host.h" 38 #include "chrome/browser/cache_manager_host.h"
38 #include "chrome/browser/character_encoding.h" 39 #include "chrome/browser/character_encoding.h"
39 #include "chrome/browser/download/download_manager.h" 40 #include "chrome/browser/download/download_manager.h"
40 #include "chrome/browser/download/download_request_manager.h" 41 #include "chrome/browser/download/download_request_manager.h"
41 #include "chrome/browser/gears_integration.h" 42 #include "chrome/browser/gears_integration.h"
42 #include "chrome/browser/load_notification_details.h" 43 #include "chrome/browser/load_notification_details.h"
43 #include "chrome/browser/modal_html_dialog_delegate.h" 44 #include "chrome/browser/modal_html_dialog_delegate.h"
44 #include "chrome/browser/password_manager/password_manager.h" 45 #include "chrome/browser/password_manager/password_manager.h"
45 #include "chrome/browser/plugin_installer.h" 46 #include "chrome/browser/plugin_installer.h"
46 #include "chrome/browser/plugin_service.h" 47 #include "chrome/browser/plugin_service.h"
47 #include "chrome/browser/printing/print_job.h" 48 #include "chrome/browser/printing/print_job.h"
48 #include "chrome/browser/renderer_host/render_view_host.h"
49 #include "chrome/browser/renderer_host/render_widget_host_view.h" 49 #include "chrome/browser/renderer_host/render_widget_host_view.h"
50 #include "chrome/browser/search_engines/template_url_fetcher.h" 50 #include "chrome/browser/search_engines/template_url_fetcher.h"
51 #include "chrome/browser/tab_contents/navigation_entry.h" 51 #include "chrome/browser/tab_contents/navigation_entry.h"
52 #include "chrome/browser/tab_contents/web_contents_view.h" 52 #include "chrome/browser/tab_contents/web_contents_view.h"
53 #include "chrome/browser/views/hung_renderer_view.h" // TODO(brettw) delete me. 53 #include "chrome/browser/views/hung_renderer_view.h" // TODO(brettw) delete me.
54 #include "chrome/common/resource_bundle.h" 54 #include "chrome/common/resource_bundle.h"
55 #endif 55 #endif
56 56
57 #include "generated_resources.h" 57 #include "generated_resources.h"
58 58
(...skipping 1688 matching lines...) Expand 10 before | Expand all | Expand 10 after
1747 // The favicon url isn't valid. This means there really isn't a favicon, 1747 // The favicon url isn't valid. This means there really isn't a favicon,
1748 // or the favicon url wasn't obtained before the load started. This assumes 1748 // or the favicon url wasn't obtained before the load started. This assumes
1749 // the later. 1749 // the later.
1750 // TODO(sky): Need a way to set the favicon that doesn't involve generating 1750 // TODO(sky): Need a way to set the favicon that doesn't involve generating
1751 // its url. 1751 // its url.
1752 new_url->SetFavIconURL(TemplateURL::GenerateFaviconURL(params.referrer)); 1752 new_url->SetFavIconURL(TemplateURL::GenerateFaviconURL(params.referrer));
1753 } 1753 }
1754 new_url->set_safe_for_autoreplace(true); 1754 new_url->set_safe_for_autoreplace(true);
1755 url_model->Add(new_url); 1755 url_model->Add(new_url);
1756 } 1756 }
OLDNEW
« no previous file with comments | « chrome/browser/browser.scons ('k') | chrome/chrome.xcodeproj/project.pbxproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698