1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CONTENT_PUBLIC_BROWSER_SAVE_PAGE_TYPE_H_
6#define CONTENT_PUBLIC_BROWSER_SAVE_PAGE_TYPE_H_
7
8namespace content {
9
10enum SavePageType {
11  // The value of the save type before its set by the user.
12  SAVE_PAGE_TYPE_UNKNOWN = -1,
13  // User chose to save only the HTML of the page.
14  SAVE_PAGE_TYPE_AS_ONLY_HTML = 0,
15  // User chose to save complete-html page.
16  SAVE_PAGE_TYPE_AS_COMPLETE_HTML = 1,
17  // User chose to save complete-html page as MHTML.
18  SAVE_PAGE_TYPE_AS_MHTML = 2,
19
20  // Insert new values BEFORE this value.
21  SAVE_PAGE_TYPE_MAX,
22};
23
24}
25
26#endif  // CONTENT_PUBLIC_BROWSER_SAVE_PAGE_TYPE_H_
27