OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "components/dom_distiller/core/task_tracker.h" | 5 #include "components/dom_distiller/core/task_tracker.h" |
6 | 6 |
7 #include "base/auto_reset.h" | 7 #include "base/auto_reset.h" |
8 #include "base/location.h" | 8 #include "base/location.h" |
| 9 #include "base/message_loop/message_loop.h" |
9 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
10 #include "base/thread_task_runner_handle.h" | 11 #include "base/thread_task_runner_handle.h" |
11 #include "components/dom_distiller/core/distilled_content_store.h" | 12 #include "components/dom_distiller/core/distilled_content_store.h" |
12 #include "components/dom_distiller/core/proto/distilled_article.pb.h" | 13 #include "components/dom_distiller/core/proto/distilled_article.pb.h" |
13 #include "components/dom_distiller/core/proto/distilled_page.pb.h" | 14 #include "components/dom_distiller/core/proto/distilled_page.pb.h" |
14 | 15 |
15 namespace dom_distiller { | 16 namespace dom_distiller { |
16 | 17 |
17 ViewerHandle::ViewerHandle(CancelCallback callback) | 18 ViewerHandle::ViewerHandle(CancelCallback callback) |
18 : cancel_callback_(callback) {} | 19 : cancel_callback_(callback) {} |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 void TaskTracker::AddDistilledContentToStore( | 245 void TaskTracker::AddDistilledContentToStore( |
245 const DistilledArticleProto& content) { | 246 const DistilledArticleProto& content) { |
246 if (content_store_) { | 247 if (content_store_) { |
247 content_store_->SaveContent( | 248 content_store_->SaveContent( |
248 entry_, content, DistilledContentStore::SaveCallback()); | 249 entry_, content, DistilledContentStore::SaveCallback()); |
249 } | 250 } |
250 } | 251 } |
251 | 252 |
252 | 253 |
253 } // namespace dom_distiller | 254 } // namespace dom_distiller |
OLD | NEW |