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

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

Issue 2826: Move the download code to new directories: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 3 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 | « no previous file | chrome/browser/browser.vcproj » ('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/automation/automation_provider.h" 5 #include "chrome/browser/automation/automation_provider.h"
6 6
7 #include "base/path_service.h" 7 #include "base/path_service.h"
8 #include "chrome/app/chrome_dll_resource.h" 8 #include "chrome/app/chrome_dll_resource.h"
9 #include "chrome/browser/automation/automation_provider_list.h" 9 #include "chrome/browser/automation/automation_provider_list.h"
10 #include "chrome/browser/automation/ui_controls.h" 10 #include "chrome/browser/automation/ui_controls.h"
11 #include "chrome/browser/automation/url_request_failed_dns_job.h" 11 #include "chrome/browser/automation/url_request_failed_dns_job.h"
12 #include "chrome/browser/automation/url_request_mock_http_job.h" 12 #include "chrome/browser/automation/url_request_mock_http_job.h"
13 #include "chrome/browser/automation/url_request_slow_download_job.h" 13 #include "chrome/browser/automation/url_request_slow_download_job.h"
14 #include "chrome/browser/browser_window.h" 14 #include "chrome/browser/browser_window.h"
15 #include "chrome/browser/dom_operation_notification_details.h" 15 #include "chrome/browser/dom_operation_notification_details.h"
16 #include "chrome/browser/download_manager.h" 16 #include "chrome/browser/download/download_manager.h"
17 #include "chrome/browser/external_tab_container.h" 17 #include "chrome/browser/external_tab_container.h"
18 #include "chrome/browser/find_notification_details.h" 18 #include "chrome/browser/find_notification_details.h"
19 #include "chrome/browser/login_prompt.h" 19 #include "chrome/browser/login_prompt.h"
20 #include "chrome/browser/navigation_entry.h" 20 #include "chrome/browser/navigation_entry.h"
21 #include "chrome/browser/printing/print_job.h" 21 #include "chrome/browser/printing/print_job.h"
22 #include "chrome/browser/render_view_host.h" 22 #include "chrome/browser/render_view_host.h"
23 #include "chrome/browser/save_package.h" 23 #include "chrome/browser/save_package.h"
24 #include "chrome/browser/ssl_blocking_page.h" 24 #include "chrome/browser/ssl_blocking_page.h"
25 #include "chrome/browser/web_contents.h" 25 #include "chrome/browser/web_contents.h"
26 #include "chrome/browser/views/bookmark_bar_view.h" 26 #include "chrome/browser/views/bookmark_bar_view.h"
(...skipping 2262 matching lines...) Expand 10 before | Expand all | Expand 10 after
2289 DCHECK(type == NOTIFY_SESSION_END); 2289 DCHECK(type == NOTIFY_SESSION_END);
2290 // OnBrowserRemoving does a ReleaseLater. When session end is received we exit 2290 // OnBrowserRemoving does a ReleaseLater. When session end is received we exit
2291 // before the task runs resulting in this object not being deleted. This 2291 // before the task runs resulting in this object not being deleted. This
2292 // Release balance out the Release scheduled by OnBrowserRemoving. 2292 // Release balance out the Release scheduled by OnBrowserRemoving.
2293 Release(); 2293 Release();
2294 } 2294 }
2295 2295
2296 void TestingAutomationProvider::OnRemoveProvider() { 2296 void TestingAutomationProvider::OnRemoveProvider() {
2297 AutomationProviderList::GetInstance()->RemoveProvider(this); 2297 AutomationProviderList::GetInstance()->RemoveProvider(this);
2298 } 2298 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698