Index: content/public/common/selected_file_info.h |
diff --git a/content/public/common/selected_file_info.h b/content/public/common/selected_file_info.h |
deleted file mode 100644 |
index 124a22ba8a0297a983e5a08e07b7bd230b98a12d..0000000000000000000000000000000000000000 |
--- a/content/public/common/selected_file_info.h |
+++ /dev/null |
@@ -1,39 +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. |
- |
-#ifndef CONTENT_PUBLIC_COMMON_SELECTED_FILE_INFO_H_ |
-#define CONTENT_PUBLIC_COMMON_SELECTED_FILE_INFO_H_ |
-#pragma once |
- |
-#include <vector> |
- |
-#include "base/file_path.h" |
-#include "base/string16.h" |
-#include "content/common/content_export.h" |
- |
-namespace content { |
- |
-// Struct used for passing selected file info to WebKit. |
-struct CONTENT_EXPORT SelectedFileInfo { |
- // The real path to the selected file. This can be a snapshot file with a |
- // human unreadable name like /blah/.d41d8cd98f00b204e9800998ecf8427e. |
- FilePath path; |
- |
- // This field is optional. The display name contains only the base name |
- // portion of a file name (ex. no path separators), and used for displaying |
- // selected file names. If this field is empty, the base name portion of |
- // |path| is used for displaying. |
- FilePath::StringType display_name; |
- |
- SelectedFileInfo() {} |
- SelectedFileInfo(const FilePath& in_path, |
- const FilePath::StringType& in_display_name) |
- : path(in_path), |
- display_name(in_display_name) { |
- } |
-}; |
- |
-} // namespace content |
- |
-#endif // CONTENT_PUBLIC_COMMON_SELECTED_FILE_INFO_H_ |