| 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 #if 0 |
| 6 // have to update this to grope the new data structures... |
| 7 |
| 5 #include "webkit/blob/view_blob_internals_job.h" | 8 #include "webkit/blob/view_blob_internals_job.h" |
| 6 | 9 |
| 7 #include "base/bind.h" | 10 #include "base/bind.h" |
| 8 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 9 #include "base/format_macros.h" | 12 #include "base/format_macros.h" |
| 10 #include "base/i18n/number_formatting.h" | 13 #include "base/i18n/number_formatting.h" |
| 11 #include "base/i18n/time_formatting.h" | 14 #include "base/i18n/time_formatting.h" |
| 12 #include "base/logging.h" | 15 #include "base/logging.h" |
| 13 #include "base/message_loop.h" | 16 #include "base/message_loop.h" |
| 14 #include "base/string_util.h" | 17 #include "base/string_util.h" |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 } | 241 } |
| 239 | 242 |
| 240 if (has_multi_items) | 243 if (has_multi_items) |
| 241 EndHTMLList(out); | 244 EndHTMLList(out); |
| 242 } | 245 } |
| 243 | 246 |
| 244 EndHTMLList(out); | 247 EndHTMLList(out); |
| 245 } | 248 } |
| 246 | 249 |
| 247 } // namespace webkit_blob | 250 } // namespace webkit_blob |
| 251 |
| 252 #endif // 0 |
| OLD | NEW |