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

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

Issue 10695066: Move SelectFileDialog implementation to ui/base/dialogs/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reupload because weirdness Created 8 years, 5 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_aura.cc
diff --git a/chrome/browser/ui/views/select_file_dialog_aura.cc b/chrome/browser/ui/views/select_file_dialog_aura.cc
deleted file mode 100644
index 467ace2285a61aa2baf96c04b52754b11045607f..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/views/select_file_dialog_aura.cc
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/ui/select_file_dialog.h"
-
-#include "base/logging.h"
-#include "chrome/browser/ui/views/select_file_dialog_extension.h"
-#include "content/public/browser/browser_thread.h"
-
-using content::BrowserThread;
-
-// static
-SelectFileDialog* SelectFileDialog::Create(Listener* listener,
- ui::SelectFilePolicy* policy) {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
-#if defined(USE_ASH) && defined(FILE_MANAGER_EXTENSION)
- return SelectFileDialogExtension::Create(listener, policy);
-#else
- return NULL;
-#endif
-}

Powered by Google App Engine
This is Rietveld 408576698