| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "webkit/browser/blob/view_blob_internals_job.h" | 5 #include "storage/browser/blob/view_blob_internals_job.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/format_macros.h" | 9 #include "base/format_macros.h" |
| 10 #include "base/i18n/number_formatting.h" | 10 #include "base/i18n/number_formatting.h" |
| 11 #include "base/i18n/time_formatting.h" | 11 #include "base/i18n/time_formatting.h" |
| 12 #include "base/logging.h" | 12 #include "base/logging.h" |
| 13 #include "base/message_loop/message_loop.h" | 13 #include "base/message_loop/message_loop.h" |
| 14 #include "base/strings/string_number_conversions.h" | 14 #include "base/strings/string_number_conversions.h" |
| 15 #include "base/strings/string_util.h" | 15 #include "base/strings/string_util.h" |
| 16 #include "base/strings/stringprintf.h" | 16 #include "base/strings/stringprintf.h" |
| 17 #include "base/strings/utf_string_conversions.h" | 17 #include "base/strings/utf_string_conversions.h" |
| 18 #include "net/base/escape.h" | 18 #include "net/base/escape.h" |
| 19 #include "net/base/net_errors.h" | 19 #include "net/base/net_errors.h" |
| 20 #include "net/url_request/url_request.h" | 20 #include "net/url_request/url_request.h" |
| 21 #include "webkit/browser/blob/blob_storage_context.h" | 21 #include "storage/browser/blob/blob_storage_context.h" |
| 22 #include "webkit/common/blob/blob_data.h" | 22 #include "storage/common/blob/blob_data.h" |
| 23 | 23 |
| 24 namespace { | 24 namespace { |
| 25 | 25 |
| 26 const char kEmptyBlobStorageMessage[] = "No available blob data."; | 26 const char kEmptyBlobStorageMessage[] = "No available blob data."; |
| 27 const char kContentType[] = "Content Type: "; | 27 const char kContentType[] = "Content Type: "; |
| 28 const char kContentDisposition[] = "Content Disposition: "; | 28 const char kContentDisposition[] = "Content Disposition: "; |
| 29 const char kCount[] = "Count: "; | 29 const char kCount[] = "Count: "; |
| 30 const char kIndex[] = "Index: "; | 30 const char kIndex[] = "Index: "; |
| 31 const char kType[] = "Type: "; | 31 const char kType[] = "Type: "; |
| 32 const char kPath[] = "Path: "; | 32 const char kPath[] = "Path: "; |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 } | 233 } |
| 234 | 234 |
| 235 if (has_multi_items) | 235 if (has_multi_items) |
| 236 EndHTMLList(out); | 236 EndHTMLList(out); |
| 237 } | 237 } |
| 238 | 238 |
| 239 EndHTMLList(out); | 239 EndHTMLList(out); |
| 240 } | 240 } |
| 241 | 241 |
| 242 } // namespace storage | 242 } // namespace storage |
| OLD | NEW |