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

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: Yay, more syncing 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
« no previous file with comments | « chrome/browser/ui/views/url_picker.cc ('k') | chrome/browser/ui/views/window.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 (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 "base/utf_string_conversions.h" 8 #include "base/utf_string_conversions.h"
9 #include "chrome/browser/views/user_data_dir_dialog.h" 9 #include "chrome/browser/ui/views/user_data_dir_dialog.h"
10 #include "grit/chromium_strings.h" 10 #include "grit/chromium_strings.h"
11 #include "grit/generated_resources.h" 11 #include "grit/generated_resources.h"
12 #include "views/controls/message_box_view.h" 12 #include "views/controls/message_box_view.h"
13 #include "views/widget/widget.h" 13 #include "views/widget/widget.h"
14 #include "views/window/window.h" 14 #include "views/window/window.h"
15 15
16 // static 16 // static
17 FilePath UserDataDirDialog::RunUserDataDirDialog( 17 FilePath UserDataDirDialog::RunUserDataDirDialog(
18 const FilePath& user_data_dir) { 18 const FilePath& user_data_dir) {
19 // When the window closes, it will delete itself. 19 // When the window closes, it will delete itself.
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 } 94 }
95 95
96 void UserDataDirDialog::FileSelected(const FilePath& path, 96 void UserDataDirDialog::FileSelected(const FilePath& path,
97 int index, void* params) { 97 int index, void* params) {
98 user_data_dir_ = path; 98 user_data_dir_ = path;
99 is_blocking_ = false; 99 is_blocking_ = false;
100 } 100 }
101 101
102 void UserDataDirDialog::FileSelectionCanceled(void* params) { 102 void UserDataDirDialog::FileSelectionCanceled(void* params) {
103 } 103 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/url_picker.cc ('k') | chrome/browser/ui/views/window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698