Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / ui / shell_dialogs / selected_file_info.cc
blob054c511e81621f7fb64ab47e014924e50e572248
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
3 // found in the LICENSE file.
5 #include "ui/shell_dialogs/selected_file_info.h"
7 namespace ui {
9 SelectedFileInfo::SelectedFileInfo() {}
11 SelectedFileInfo::SelectedFileInfo(const base::FilePath& in_file_path,
12 const base::FilePath& in_local_path)
13 : file_path(in_file_path),
14 local_path(in_local_path) {
15 display_name = in_file_path.BaseName().value();
18 SelectedFileInfo::~SelectedFileInfo() {}
20 } // namespace ui