OLD | NEW |
(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 |
OLD | NEW |