| 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/id_map.h" | 9 #include "base/id_map.h" |
| 10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 std::string output_data_; | 410 std::string output_data_; |
| 411 scoped_ptr<google::protobuf::io::StringOutputStream> protobuf_output_stream_; | 411 scoped_ptr<google::protobuf::io::StringOutputStream> protobuf_output_stream_; |
| 412 }; | 412 }; |
| 413 | 413 |
| 414 IN_PROC_BROWSER_TEST_F(ContentExtractor, MANUAL_ExtractUrl) { | 414 IN_PROC_BROWSER_TEST_F(ContentExtractor, MANUAL_ExtractUrl) { |
| 415 Start(); | 415 Start(); |
| 416 base::RunLoop().Run(); | 416 base::RunLoop().Run(); |
| 417 } | 417 } |
| 418 | 418 |
| 419 } // namespace dom_distiller | 419 } // namespace dom_distiller |
| OLD | NEW |