| 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/views/select_file_dialog_extension.h" | 5 #include "chrome/browser/ui/views/select_file_dialog_extension.h" |
| 6 | 6 |
| 7 #include "base/files/file_util.h" | 7 #include "base/files/file_util.h" |
| 8 #include "base/files/scoped_temp_dir.h" | 8 #include "base/files/scoped_temp_dir.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/path_service.h" | 12 #include "base/path_service.h" |
| 13 #include "base/prefs/pref_service.h" | |
| 14 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
| 15 #include "base/threading/platform_thread.h" | 14 #include "base/threading/platform_thread.h" |
| 16 #include "build/build_config.h" | 15 #include "build/build_config.h" |
| 17 #include "chrome/browser/chromeos/file_manager/volume_manager.h" | 16 #include "chrome/browser/chromeos/file_manager/volume_manager.h" |
| 18 #include "chrome/browser/extensions/component_loader.h" | 17 #include "chrome/browser/extensions/component_loader.h" |
| 19 #include "chrome/browser/extensions/extension_browsertest.h" | 18 #include "chrome/browser/extensions/extension_browsertest.h" |
| 20 #include "chrome/browser/profiles/profile.h" | 19 #include "chrome/browser/profiles/profile.h" |
| 21 #include "chrome/browser/ui/browser.h" | 20 #include "chrome/browser/ui/browser.h" |
| 22 #include "chrome/browser/ui/browser_navigator.h" | 21 #include "chrome/browser/ui/browser_navigator.h" |
| 23 #include "chrome/browser/ui/browser_navigator_params.h" | 22 #include "chrome/browser/ui/browser_navigator_params.h" |
| 24 #include "chrome/browser/ui/browser_window.h" | 23 #include "chrome/browser/ui/browser_window.h" |
| 25 #include "chrome/common/chrome_paths.h" | 24 #include "chrome/common/chrome_paths.h" |
| 26 #include "chrome/common/pref_names.h" | 25 #include "chrome/common/pref_names.h" |
| 26 #include "components/prefs/pref_service.h" |
| 27 #include "content/public/browser/render_frame_host.h" | 27 #include "content/public/browser/render_frame_host.h" |
| 28 #include "content/public/browser/render_view_host.h" | 28 #include "content/public/browser/render_view_host.h" |
| 29 #include "content/public/test/test_utils.h" | 29 #include "content/public/test/test_utils.h" |
| 30 #include "extensions/test/extension_test_message_listener.h" | 30 #include "extensions/test/extension_test_message_listener.h" |
| 31 #include "ui/shell_dialogs/select_file_dialog.h" | 31 #include "ui/shell_dialogs/select_file_dialog.h" |
| 32 #include "ui/shell_dialogs/selected_file_info.h" | 32 #include "ui/shell_dialogs/selected_file_info.h" |
| 33 | 33 |
| 34 using content::BrowserContext; | 34 using content::BrowserContext; |
| 35 | 35 |
| 36 // Mock listener used by test below. | 36 // Mock listener used by test below. |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 ASSERT_FALSE(second_dialog_->IsRunning(owning_window)); | 398 ASSERT_FALSE(second_dialog_->IsRunning(owning_window)); |
| 399 | 399 |
| 400 // Click cancel button. | 400 // Click cancel button. |
| 401 CloseDialog(DIALOG_BTN_CANCEL, owning_window); | 401 CloseDialog(DIALOG_BTN_CANCEL, owning_window); |
| 402 | 402 |
| 403 // Listener should have been informed of the cancellation. | 403 // Listener should have been informed of the cancellation. |
| 404 ASSERT_FALSE(listener_->file_selected()); | 404 ASSERT_FALSE(listener_->file_selected()); |
| 405 ASSERT_TRUE(listener_->canceled()); | 405 ASSERT_TRUE(listener_->canceled()); |
| 406 ASSERT_EQ(this, listener_->params()); | 406 ASSERT_EQ(this, listener_->params()); |
| 407 } | 407 } |
| OLD | NEW |