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

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

Issue 6749021: Added new fileBrowserPrivate and fileHandler extension APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 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/extension_unittest.cc ('k') | chrome/common/extensions/file_browser_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/file_browser_handler.h
===================================================================
--- chrome/common/extensions/file_browser_handler.h (revision 0)
+++ chrome/common/extensions/file_browser_handler.h (revision 0)
@@ -0,0 +1,64 @@
+// Copyright (c) 2011 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_BROWSER_HANDLER_H_
+#define CHROME_COMMON_EXTENSIONS_FILE_BROWSER_HANDLER_H_
+#pragma once
+
+#include <string>
+#include <vector>
+
+#include "base/basictypes.h"
+#include "chrome/common/extensions/url_pattern.h"
+#include "googleurl/src/gurl.h"
+
+class URLPattern;
+
+// FileBrowserHandler encapsulates the state of a file browser action.
+class FileBrowserHandler {
+ public:
+ typedef std::vector<URLPattern> PatternList;
+
+ FileBrowserHandler();
+ ~FileBrowserHandler();
+
+ // extension id
+ std::string extension_id() const { return extension_id_; }
+ void set_extension_id(const std::string& extension_id) {
+ extension_id_ = extension_id;
+ }
+
+ // action id
+ const std::string& id() const { return id_; }
+ void set_id(const std::string& id) { id_ = id; }
+
+ // default title
+ const std::string& title() const { return title_; }
+ void set_title(const std::string& title) { title_ = title; }
+
+ // File schema URL patterns.
+ const PatternList& file_url_patterns() const { return patterns_; }
+ void AddPattern(const URLPattern& pattern);
+ bool MatchesURL(const GURL& url) const;
+ void ClearPatterns();
+
+ // Action icon path.
+ const std::string icon_path() const { return default_icon_path_; }
+ void set_icon_path(const std::string& path) {
+ default_icon_path_ = path;
+ }
+
+ private:
+ // The id for the extension this action belongs to (as defined in the
+ // extension manifest).
+ std::string extension_id_;
+ std::string title_;
+ std::string default_icon_path_;
+ // The id for the FileBrowserHandler, for example: "PdfFileAction".
+ std::string id_;
+ // A list of file filters.
+ PatternList patterns_;
+};
+
+#endif // CHROME_COMMON_EXTENSIONS_FILE_BROWSER_HANDLER_H_
Property changes on: chrome/common/extensions/file_browser_handler.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/common/extensions/extension_unittest.cc ('k') | chrome/common/extensions/file_browser_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698