Index: chrome/common/extensions/file_handler_info.h |
diff --git a/chrome/common/extensions/file_handler_info.h b/chrome/common/extensions/file_handler_info.h |
deleted file mode 100644 |
index 5905ecd0240b0dfb73f05689f33bf5902f2202ac..0000000000000000000000000000000000000000 |
--- a/chrome/common/extensions/file_handler_info.h |
+++ /dev/null |
@@ -1,37 +0,0 @@ |
-// Copyright 2014 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 CHROME_COMMON_EXTENSIONS_FILE_HANDLER_INFO_H_ |
-#define CHROME_COMMON_EXTENSIONS_FILE_HANDLER_INFO_H_ |
- |
-#include <set> |
-#include <string> |
-#include <vector> |
- |
-namespace extensions { |
- |
-struct FileHandlerInfo { |
- FileHandlerInfo(); |
- ~FileHandlerInfo(); |
- |
- std::string id; |
- std::string title; |
- |
- // File extensions associated with this handler. |
- std::set<std::string> extensions; |
- |
- // MIME types associated with this handler. |
- std::set<std::string> types; |
-}; |
- |
-struct FileHandlersInfo { |
- FileHandlersInfo(); |
- ~FileHandlersInfo(); |
- |
- std::vector<FileHandlerInfo> handlers; |
-}; |
- |
-} // namespace extensions |
- |
-#endif // CHROME_COMMON_EXTENSIONS_FILE_HANDLER_INFO_H_ |