| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <sstream> | 5 #include <sstream> |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/files/scoped_temp_dir.h" | 8 #include "base/files/scoped_temp_dir.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| 11 #include "base/run_loop.h" | 11 #include "base/run_loop.h" |
| 12 #include "components/dom_distiller/content/distiller_page_web_contents.h" | 12 #include "components/dom_distiller/content/distiller_page_web_contents.h" |
| 13 #include "components/dom_distiller/core/distiller.h" | 13 #include "components/dom_distiller/core/distiller.h" |
| 14 #include "components/dom_distiller/core/dom_distiller_database.h" | 14 #include "components/dom_distiller/core/dom_distiller_database.h" |
| 15 #include "components/dom_distiller/core/dom_distiller_service.h" | 15 #include "components/dom_distiller/core/dom_distiller_service.h" |
| 16 #include "components/dom_distiller/core/dom_distiller_store.h" | 16 #include "components/dom_distiller/core/dom_distiller_store.h" |
| 17 #include "components/dom_distiller/core/proto/distilled_article.pb.h" | 17 #include "components/dom_distiller/core/proto/distilled_article.pb.h" |
| 18 #include "components/dom_distiller/core/proto/distilled_page.pb.h" | 18 #include "components/dom_distiller/core/proto/distilled_page.pb.h" |
| 19 #include "components/dom_distiller/core/task_tracker.h" | 19 #include "components/dom_distiller/core/task_tracker.h" |
| 20 #include "content/public/browser/browser_context.h" | 20 #include "content/public/browser/browser_context.h" |
| 21 #include "content/public/browser/browser_thread.h" | 21 #include "content/public/browser/browser_thread.h" |
| 22 #include "content/public/test/content_browser_test.h" |
| 22 #include "content/shell/browser/shell.h" | 23 #include "content/shell/browser/shell.h" |
| 23 #include "content/test/content_browser_test.h" | |
| 24 #include "net/dns/mock_host_resolver.h" | 24 #include "net/dns/mock_host_resolver.h" |
| 25 #include "ui/base/resource/resource_bundle.h" | 25 #include "ui/base/resource/resource_bundle.h" |
| 26 | 26 |
| 27 using content::ContentBrowserTest; | 27 using content::ContentBrowserTest; |
| 28 | 28 |
| 29 namespace dom_distiller { | 29 namespace dom_distiller { |
| 30 | 30 |
| 31 namespace { | 31 namespace { |
| 32 | 32 |
| 33 const char* kUrlSwitch = "url"; | 33 const char* kUrlSwitch = "url"; |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 scoped_ptr<DomDistillerService> service_; | 186 scoped_ptr<DomDistillerService> service_; |
| 187 scoped_ptr<ContentExtractionRequest> request_; | 187 scoped_ptr<ContentExtractionRequest> request_; |
| 188 }; | 188 }; |
| 189 | 189 |
| 190 IN_PROC_BROWSER_TEST_F(ContentExtractor, MANUAL_ExtractUrl) { | 190 IN_PROC_BROWSER_TEST_F(ContentExtractor, MANUAL_ExtractUrl) { |
| 191 Start(); | 191 Start(); |
| 192 base::RunLoop().Run(); | 192 base::RunLoop().Run(); |
| 193 } | 193 } |
| 194 | 194 |
| 195 } // namespace dom_distiller | 195 } // namespace dom_distiller |
| OLD | NEW |