Chromium Code Reviews| Index: content/public/browser/save_page_type.h |
| diff --git a/content/public/browser/save_page_type.h b/content/public/browser/save_page_type.h |
| index 81c780398a5ea4fdec3a8b7da9baca50a04cf6c2..6eea88b7dd29eaf59b8ddaba258d0a6c344909a8 100644 |
| --- a/content/public/browser/save_page_type.h |
| +++ b/content/public/browser/save_page_type.h |
| @@ -14,7 +14,12 @@ enum SavePageType { |
| // User chose to save only the HTML of the page. |
| SAVE_PAGE_TYPE_AS_ONLY_HTML = 0, |
| // User chose to save complete-html page. |
| - SAVE_PAGE_TYPE_AS_COMPLETE_HTML = 1 |
| + SAVE_PAGE_TYPE_AS_COMPLETE_HTML = 1, |
| + // User chose to save complete-html page in a single text file. |
|
cbentzel
2012/04/17 14:45:34
Nit: I think you could just say as MHTML.
benjhayden
2012/04/17 17:14:36
Done.
|
| + SAVE_PAGE_TYPE_AS_MHTML = 2, |
| + |
| + // Insert new values BEFORE this value. |
| + SAVE_PAGE_TYPE_MAX, |
| }; |
| } |