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

Side by Side Diff: content/common/download/mhtml_save_status.cc

Issue 2519273002: Fail when saving page as MHTML provides information about the cause. (Closed)
Patch Set: Fixed typo. Created 4 years 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 unified diff | Download patch
« no previous file with comments | « content/common/download/mhtml_save_status.h ('k') | content/common/frame_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 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 #include "content/common/download/mhtml_save_status.h"
6
7 #include "base/logging.h"
8
9 namespace content {
10
11 const char* GetMhtmlSaveStatusLabel(MhtmlSaveStatus save_status) {
12 switch (save_status) {
13 case MhtmlSaveStatus::SUCCESS:
14 return "Success";
15 case MhtmlSaveStatus::FILE_CLOSING_ERROR:
16 return "File closing error";
17 case MhtmlSaveStatus::FILE_CREATION_ERROR:
18 return "File creation error";
19 case MhtmlSaveStatus::FILE_WRITTING_ERROR:
20 return "File writing error";
21 case MhtmlSaveStatus::FRAME_NO_LONGER_EXISTS:
22 return "Frame no longer exists";
23 case MhtmlSaveStatus::FRAME_SERIALIZATION_FORBIDDEN:
24 return "Main frame serialization forbidden";
25 case MhtmlSaveStatus::RENDER_PROCESS_EXITED:
26 return "Render process no longer exists";
27 }
28 NOTREACHED();
29 return "<Invalid status>";
30 }
31
32 } // namespace content
OLDNEW
« no previous file with comments | « content/common/download/mhtml_save_status.h ('k') | content/common/frame_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698