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

Unified Diff: chrome/browser/ui/views/select_file_dialog.cc

Issue 6485017: Carnitas: move browser/ui/shell_dialogs.{h,cc} to browser/ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 2 more cases Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/select_file_dialog.cc
diff --git a/chrome/browser/ui/views/select_file_dialog.cc b/chrome/browser/ui/views/select_file_dialog.cc
index 7411416720f9625a436e3c53f7b2c0532832ba7e..ed7e77aad86f114ca81c2048e1acaf035476d233 100644
--- a/chrome/browser/ui/views/select_file_dialog.cc
+++ b/chrome/browser/ui/views/select_file_dialog.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/browser/shell_dialogs.h"
+#include "chrome/browser/ui/shell_dialogs.h"
#include "base/callback.h"
#include "base/file_path.h"
@@ -16,7 +16,6 @@
#include "chrome/browser/browser_thread.h"
#include "chrome/browser/dom_ui/html_dialog_ui.h"
#include "chrome/browser/profiles/profile_manager.h"
-#include "chrome/browser/shell_dialogs.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_dialogs.h"
@@ -375,16 +374,16 @@ void SelectFileDialogImpl::FileBrowseDelegate::GetDialogSize(
std::string SelectFileDialogImpl::FileBrowseDelegate::GetDialogArgs() const {
// SelectFile inputs as json.
- // {
- // "type" : "open", // (or "open_multiple", "save", "folder"
- // "all_files" : true,
- // "file_types" : {
- // "exts" : [ ["htm", "html"], ["txt"] ],
- // "desc" : [ "HTML files", "Text files" ],
- // },
- // "file_type_index" : 1, // 1-based file type index.
- // }
- // See browser/shell_dialogs.h for more details.
+ // {
+ // "type" : "open", // (or "open_multiple", "save", "folder"
+ // "all_files" : true,
+ // "file_types" : {
+ // "exts" : [ ["htm", "html"], ["txt"] ],
+ // "desc" : [ "HTML files", "Text files" ],
+ // },
+ // "file_type_index" : 1, // 1-based file type index.
+ // }
+ // See browser/ui/shell_dialogs.h for more details.
std::string type_string;
switch (type_) {
« no previous file with comments | « chrome/browser/ui/views/options/languages_page_view.cc ('k') | chrome/browser/ui/views/shell_dialogs_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698