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

Unified Diff: content/public/common/selected_file_info.h

Issue 10669023: Start consolidating non-port specific code to ui/base/dialogs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clenaup Created 8 years, 6 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
« no previous file with comments | « content/public/browser/render_view_host.h ('k') | content/renderer/render_view_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « content/public/browser/render_view_host.h ('k') | content/renderer/render_view_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698