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

Unified Diff: chrome/common/extensions/file_handler_info.h

Issue 280963002: Move FileHandlersInfo to /extensions and remove struct FileHandlersInfo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Latest master Created 6 years, 7 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 | « chrome/common/extensions/chrome_manifest_handlers.cc ('k') | chrome/common/extensions/file_handler_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « chrome/common/extensions/chrome_manifest_handlers.cc ('k') | chrome/common/extensions/file_handler_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698