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

Side by Side Diff: chrome/browser/ui/views/user_data_dir_dialog.cc

Issue 6204002: Carnitas: Remove chrome/browser/views, update references. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Retrying upload after AppEngine error Created 9 years, 11 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
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "app/l10n_util.h" 5 #include "app/l10n_util.h"
6 #include "app/message_box_flags.h" 6 #include "app/message_box_flags.h"
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/browser/views/user_data_dir_dialog.h" 8 #include "chrome/browser/ui/views/user_data_dir_dialog.h"
9 #include "grit/chromium_strings.h" 9 #include "grit/chromium_strings.h"
10 #include "grit/generated_resources.h" 10 #include "grit/generated_resources.h"
11 #include "views/controls/message_box_view.h" 11 #include "views/controls/message_box_view.h"
12 #include "views/widget/widget.h" 12 #include "views/widget/widget.h"
13 #include "views/window/window.h" 13 #include "views/window/window.h"
14 14
15 // static 15 // static
16 FilePath UserDataDirDialog::RunUserDataDirDialog( 16 FilePath UserDataDirDialog::RunUserDataDirDialog(
17 const FilePath& user_data_dir) { 17 const FilePath& user_data_dir) {
18 // When the window closes, it will delete itself. 18 // When the window closes, it will delete itself.
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 } 90 }
91 91
92 void UserDataDirDialog::FileSelected(const FilePath& path, 92 void UserDataDirDialog::FileSelected(const FilePath& path,
93 int index, void* params) { 93 int index, void* params) {
94 user_data_dir_ = path; 94 user_data_dir_ = path;
95 is_blocking_ = false; 95 is_blocking_ = false;
96 } 96 }
97 97
98 void UserDataDirDialog::FileSelectionCanceled(void* params) { 98 void UserDataDirDialog::FileSelectionCanceled(void* params) {
99 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698