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

Side by Side Diff: chrome/browser/automation/automation_provider.cc

Issue 164391: Implement http auth login dialog for OS X. (Closed)
Patch Set: re-disable nonfuntional test Created 11 years, 4 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
« no previous file with comments | « chrome/app/nibs/HttpAuthLoginSheet.xib ('k') | chrome/browser/cocoa/constrained_window_mac.h » ('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-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 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/automation/automation_provider.h" 5 #include "chrome/browser/automation/automation_provider.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "app/message_box_flags.h" 8 #include "app/message_box_flags.h"
9 #include "base/file_version_info.h" 9 #include "base/file_version_info.h"
10 #include "base/json_reader.h" 10 #include "base/json_reader.h"
(...skipping 15 matching lines...) Expand all
26 #include "chrome/browser/browser_window.h" 26 #include "chrome/browser/browser_window.h"
27 #include "chrome/browser/dom_operation_notification_details.h" 27 #include "chrome/browser/dom_operation_notification_details.h"
28 #include "chrome/browser/debugger/devtools_manager.h" 28 #include "chrome/browser/debugger/devtools_manager.h"
29 #include "chrome/browser/download/download_manager.h" 29 #include "chrome/browser/download/download_manager.h"
30 #include "chrome/browser/download/download_shelf.h" 30 #include "chrome/browser/download/download_shelf.h"
31 #include "chrome/browser/extensions/extension_message_service.h" 31 #include "chrome/browser/extensions/extension_message_service.h"
32 #include "chrome/browser/find_bar.h" 32 #include "chrome/browser/find_bar.h"
33 #include "chrome/browser/find_bar_controller.h" 33 #include "chrome/browser/find_bar_controller.h"
34 #include "chrome/browser/find_notification_details.h" 34 #include "chrome/browser/find_notification_details.h"
35 #include "chrome/browser/location_bar.h" 35 #include "chrome/browser/location_bar.h"
36 #include "chrome/browser/login_prompt.h"
36 #include "chrome/browser/net/url_request_mock_util.h" 37 #include "chrome/browser/net/url_request_mock_util.h"
37 #include "chrome/browser/profile_manager.h" 38 #include "chrome/browser/profile_manager.h"
38 #include "chrome/browser/renderer_host/render_view_host.h" 39 #include "chrome/browser/renderer_host/render_view_host.h"
39 #include "chrome/browser/ssl/ssl_manager.h" 40 #include "chrome/browser/ssl/ssl_manager.h"
40 #include "chrome/browser/ssl/ssl_blocking_page.h" 41 #include "chrome/browser/ssl/ssl_blocking_page.h"
41 #include "chrome/browser/tab_contents/tab_contents.h" 42 #include "chrome/browser/tab_contents/tab_contents.h"
42 #include "chrome/browser/tab_contents/tab_contents_view.h" 43 #include "chrome/browser/tab_contents/tab_contents_view.h"
43 #include "chrome/common/automation_constants.h" 44 #include "chrome/common/automation_constants.h"
44 #include "chrome/common/chrome_paths.h" 45 #include "chrome/common/chrome_paths.h"
45 #include "chrome/common/json_value_serializer.h" 46 #include "chrome/common/json_value_serializer.h"
(...skipping 10 matching lines...) Expand all
56 // TODO(port): Port these headers. 57 // TODO(port): Port these headers.
57 #include "chrome/browser/character_encoding.h" 58 #include "chrome/browser/character_encoding.h"
58 #include "chrome/browser/download/save_package.h" 59 #include "chrome/browser/download/save_package.h"
59 #include "chrome/browser/external_tab_container.h" 60 #include "chrome/browser/external_tab_container.h"
60 #include "chrome/browser/printing/print_job.h" 61 #include "chrome/browser/printing/print_job.h"
61 #endif // defined(OS_WIN) 62 #endif // defined(OS_WIN)
62 63
63 #if defined(OS_WIN) || defined(OS_LINUX) 64 #if defined(OS_WIN) || defined(OS_LINUX)
64 // TODO(port): Port these to the mac. 65 // TODO(port): Port these to the mac.
65 #include "chrome/browser/automation/ui_controls.h" 66 #include "chrome/browser/automation/ui_controls.h"
66 #include "chrome/browser/login_prompt.h"
67 #endif 67 #endif
68 68
69 #if defined(OS_WIN) 69 #if defined(OS_WIN)
70 #include "chrome/browser/views/bookmark_bar_view.h" 70 #include "chrome/browser/views/bookmark_bar_view.h"
71 #include "views/widget/root_view.h" 71 #include "views/widget/root_view.h"
72 #include "views/widget/widget_win.h" 72 #include "views/widget/widget_win.h"
73 #include "views/window/window.h" 73 #include "views/window/window.h"
74 #endif 74 #endif
75 75
76 using base::Time; 76 using base::Time;
(...skipping 3019 matching lines...) Expand 10 before | Expand all | Expand 10 after
3096 NOTREACHED(); 3096 NOTREACHED();
3097 return NULL; 3097 return NULL;
3098 } 3098 }
3099 3099
3100 RenderViewHost* view_host = tab_contents->render_view_host(); 3100 RenderViewHost* view_host = tab_contents->render_view_host();
3101 return view_host; 3101 return view_host;
3102 } 3102 }
3103 3103
3104 return NULL; 3104 return NULL;
3105 } 3105 }
OLDNEW
« no previous file with comments | « chrome/app/nibs/HttpAuthLoginSheet.xib ('k') | chrome/browser/cocoa/constrained_window_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698