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

Side by Side Diff: content/shell/browser/shell_download_manager_delegate.cc

Issue 174803002: Move root_window.* to window_event_dispatcher.* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 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 | « content/shell/browser/shell_aura.cc ('k') | content/shell/browser/shell_platform_data_aura.cc » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "content/shell/browser/shell_download_manager_delegate.h" 5 #include "content/shell/browser/shell_download_manager_delegate.h"
6 6
7 #if defined(TOOLKIT_GTK) 7 #if defined(TOOLKIT_GTK)
8 #include <gtk/gtk.h> 8 #include <gtk/gtk.h>
9 #endif 9 #endif
10 10
(...skipping 11 matching lines...) Expand all
22 #include "content/public/browser/browser_context.h" 22 #include "content/public/browser/browser_context.h"
23 #include "content/public/browser/browser_thread.h" 23 #include "content/public/browser/browser_thread.h"
24 #include "content/public/browser/download_manager.h" 24 #include "content/public/browser/download_manager.h"
25 #include "content/public/browser/web_contents.h" 25 #include "content/public/browser/web_contents.h"
26 #include "content/public/browser/web_contents_view.h" 26 #include "content/public/browser/web_contents_view.h"
27 #include "content/shell/browser/webkit_test_controller.h" 27 #include "content/shell/browser/webkit_test_controller.h"
28 #include "content/shell/common/shell_switches.h" 28 #include "content/shell/common/shell_switches.h"
29 #include "net/base/net_util.h" 29 #include "net/base/net_util.h"
30 30
31 #if defined(OS_WIN) 31 #if defined(OS_WIN)
32 #include "ui/aura/root_window.h"
33 #include "ui/aura/window.h" 32 #include "ui/aura/window.h"
33 #include "ui/aura/window_event_dispatcher.h"
34 #endif 34 #endif
35 35
36 namespace content { 36 namespace content {
37 37
38 ShellDownloadManagerDelegate::ShellDownloadManagerDelegate() 38 ShellDownloadManagerDelegate::ShellDownloadManagerDelegate()
39 : download_manager_(NULL), 39 : download_manager_(NULL),
40 suppress_prompting_(false), 40 suppress_prompting_(false),
41 weak_ptr_factory_(this) {} 41 weak_ptr_factory_(this) {}
42 42
43 ShellDownloadManagerDelegate::~ShellDownloadManagerDelegate(){ 43 ShellDownloadManagerDelegate::~ShellDownloadManagerDelegate(){
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS, result); 222 DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS, result);
223 } 223 }
224 224
225 void ShellDownloadManagerDelegate::SetDownloadBehaviorForTesting( 225 void ShellDownloadManagerDelegate::SetDownloadBehaviorForTesting(
226 const base::FilePath& default_download_path) { 226 const base::FilePath& default_download_path) {
227 default_download_path_ = default_download_path; 227 default_download_path_ = default_download_path;
228 suppress_prompting_ = true; 228 suppress_prompting_ = true;
229 } 229 }
230 230
231 } // namespace content 231 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/browser/shell_aura.cc ('k') | content/shell/browser/shell_platform_data_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698