OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/blob/view_blob_internals_job.h" | 5 #include "webkit/blob/view_blob_internals_job.h" |
6 | 6 |
7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 #include "base/logging.h" | 8 #include "base/logging.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/message_loop.h" | 12 #include "base/message_loop.h" |
| 13 #include "base/stringprintf.h" |
13 #include "base/string_util.h" | 14 #include "base/string_util.h" |
14 #include "base/utf_string_conversions.h" | 15 #include "base/utf_string_conversions.h" |
15 #include "net/base/escape.h" | 16 #include "net/base/escape.h" |
16 #include "net/url_request/url_request.h" | 17 #include "net/url_request/url_request.h" |
17 #include "webkit/blob/blob_data.h" | 18 #include "webkit/blob/blob_data.h" |
18 #include "webkit/blob/blob_storage_controller.h" | 19 #include "webkit/blob/blob_storage_controller.h" |
19 | 20 |
20 namespace { | 21 namespace { |
21 | 22 |
22 const char kEmptyBlobStorageMessage[] = "No available blob data."; | 23 const char kEmptyBlobStorageMessage[] = "No available blob data."; |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 } | 234 } |
234 | 235 |
235 if (has_multi_items) | 236 if (has_multi_items) |
236 EndHTMLList(out); | 237 EndHTMLList(out); |
237 } | 238 } |
238 | 239 |
239 EndHTMLList(out); | 240 EndHTMLList(out); |
240 } | 241 } |
241 | 242 |
242 } // namespace webkit_blob | 243 } // namespace webkit_blob |
OLD | NEW |