Chromium Code Reviews| Index: chrome/browser/chromeos/file_manager/file_tasks.h |
| diff --git a/chrome/browser/chromeos/file_manager/file_tasks.h b/chrome/browser/chromeos/file_manager/file_tasks.h |
| index b357cc2f43ee0949d471c27969e016729476f67d..0493a990e48d238eb92153320bf34000a5d1d3f4 100644 |
| --- a/chrome/browser/chromeos/file_manager/file_tasks.h |
| +++ b/chrome/browser/chromeos/file_manager/file_tasks.h |
| @@ -168,13 +168,19 @@ class FullTaskDescriptor { |
| public: |
| FullTaskDescriptor(const TaskDescriptor& task_descriptor, |
| const std::string& task_title, |
| + const std::string& task_verb, |
| const GURL& icon_url, |
| bool is_default, |
| bool is_generic_file_handler); |
| + |
| + ~FullTaskDescriptor(); |
|
fukino
2016/04/18 08:06:05
not necessary
cmihail
2016/04/21 09:36:43
Actually necessary due to the extra task_verb fiel
|
| + |
| const TaskDescriptor& task_descriptor() const { return task_descriptor_; } |
| // The title of the task. |
| const std::string& task_title() const { return task_title_; } |
| + // The verb of the task. |
| + const std::string& task_verb() const { return task_verb_; } |
| // The icon URL for the task (ex. app icon) |
| const GURL& icon_url() const { return icon_url_; } |
| @@ -194,6 +200,7 @@ class FullTaskDescriptor { |
| private: |
| TaskDescriptor task_descriptor_; |
| std::string task_title_; |
| + std::string task_verb_; |
| GURL icon_url_; |
| bool is_default_; |
| bool is_generic_file_handler_; |