OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "content/browser/indexed_db/indexed_db_internals_ui.h" | 5 #include "content/browser/indexed_db/indexed_db_internals_ui.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/files/scoped_temp_dir.h" | 10 #include "base/files/scoped_temp_dir.h" |
| 11 #include "base/macros.h" |
11 #include "base/threading/platform_thread.h" | 12 #include "base/threading/platform_thread.h" |
12 #include "base/values.h" | 13 #include "base/values.h" |
13 #include "content/browser/indexed_db/indexed_db_context_impl.h" | 14 #include "content/browser/indexed_db/indexed_db_context_impl.h" |
14 #include "content/grit/content_resources.h" | 15 #include "content/grit/content_resources.h" |
15 #include "content/public/browser/browser_context.h" | 16 #include "content/public/browser/browser_context.h" |
16 #include "content/public/browser/browser_thread.h" | 17 #include "content/public/browser/browser_thread.h" |
17 #include "content/public/browser/download_manager.h" | 18 #include "content/public/browser/download_manager.h" |
18 #include "content/public/browser/download_url_parameters.h" | 19 #include "content/public/browser/download_url_parameters.h" |
19 #include "content/public/browser/storage_partition.h" | 20 #include "content/public/browser/storage_partition.h" |
20 #include "content/public/browser/web_contents.h" | 21 #include "content/public/browser/web_contents.h" |
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 | 371 |
371 item->AddObserver(new FileDeleter(temp_path)); | 372 item->AddObserver(new FileDeleter(temp_path)); |
372 web_ui()->CallJavascriptFunction( | 373 web_ui()->CallJavascriptFunction( |
373 "indexeddb.onOriginDownloadReady", | 374 "indexeddb.onOriginDownloadReady", |
374 base::StringValue(partition_path.value()), | 375 base::StringValue(partition_path.value()), |
375 base::StringValue(origin_url.spec()), | 376 base::StringValue(origin_url.spec()), |
376 base::FundamentalValue(static_cast<double>(connection_count))); | 377 base::FundamentalValue(static_cast<double>(connection_count))); |
377 } | 378 } |
378 | 379 |
379 } // namespace content | 380 } // namespace content |
OLD | NEW |