| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/file_path.h" | 5 #include "base/file_path.h" |
| 6 #include "base/file_util.h" | 6 #include "base/file_util.h" |
| 7 #include "base/json/json_value_serializer.h" | 7 #include "base/json/json_file_value_serializer.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "base/string16.h" | 9 #include "base/string16.h" |
| 10 #include "base/time.h" | 10 #include "base/time.h" |
| 11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
| 12 #include "base/values.h" | 12 #include "base/values.h" |
| 13 #include "chrome/browser/chromeos/gdata/gdata_file_system.h" | 13 #include "chrome/browser/chromeos/gdata/gdata_file_system.h" |
| 14 #include "chrome/browser/chromeos/gdata/gdata_parser.h" | 14 #include "chrome/browser/chromeos/gdata/gdata_parser.h" |
| 15 #include "chrome/common/chrome_paths.h" | 15 #include "chrome/common/chrome_paths.h" |
| 16 #include "testing/gmock/include/gmock/gmock.h" | 16 #include "testing/gmock/include/gmock/gmock.h" |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 | 254 |
| 255 EXPECT_CALL(*mock_find_file_delegate.get(), OnFileFound(_)) | 255 EXPECT_CALL(*mock_find_file_delegate.get(), OnFileFound(_)) |
| 256 .Times(1); | 256 .Times(1); |
| 257 | 257 |
| 258 file_system_->FindFileByPath( | 258 file_system_->FindFileByPath( |
| 259 FilePath("gdata/Directory 1/SubDirectory File 1.txt"), | 259 FilePath("gdata/Directory 1/SubDirectory File 1.txt"), |
| 260 mock_find_file_delegate); | 260 mock_find_file_delegate); |
| 261 } | 261 } |
| 262 | 262 |
| 263 } // namespace gdata | 263 } // namespace gdata |
| OLD | NEW |