| 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 <set> | 5 #include <set> |
| 6 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/bind_helpers.h" | 9 #include "base/bind_helpers.h" |
| 10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
| (...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 operation_runner()->CreateSnapshotFile( | 591 operation_runner()->CreateSnapshotFile( |
| 592 CreateURL(std::string(kPicasaDirAlbums) + | 592 CreateURL(std::string(kPicasaDirAlbums) + |
| 593 "/albumname 2013-04-16/mapped_name.jpg"), | 593 "/albumname 2013-04-16/mapped_name.jpg"), |
| 594 snapshot_callback); | 594 snapshot_callback); |
| 595 loop.Run(); | 595 loop.Run(); |
| 596 EXPECT_EQ(base::PLATFORM_FILE_OK, error); | 596 EXPECT_EQ(base::PLATFORM_FILE_OK, error); |
| 597 EXPECT_EQ(image_path, platform_path_result); | 597 EXPECT_EQ(image_path, platform_path_result); |
| 598 } | 598 } |
| 599 | 599 |
| 600 } // namespace picasa | 600 } // namespace picasa |
| OLD | NEW |