| 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 "chrome/browser/chromeos/drive/webkit_file_stream_reader_impl.h" | 5 #include "chrome/browser/chromeos/drive/webkit_file_stream_reader_impl.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/threading/thread.h" | 12 #include "base/threading/thread.h" |
| 13 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 14 #include "chrome/browser/chromeos/drive/fake_file_system.h" | 14 #include "chrome/browser/chromeos/drive/fake_file_system.h" |
| 15 #include "chrome/browser/chromeos/drive/file_system_interface.h" | 15 #include "chrome/browser/chromeos/drive/file_system_interface.h" |
| 16 #include "chrome/browser/chromeos/drive/file_system_util.h" | 16 #include "chrome/browser/chromeos/drive/file_system_util.h" |
| 17 #include "chrome/browser/chromeos/drive/test_util.h" | 17 #include "chrome/browser/chromeos/drive/test_util.h" |
| 18 #include "chrome/browser/drive/fake_drive_service.h" | 18 #include "chrome/browser/drive/fake_drive_service.h" |
| 19 #include "chrome/browser/google_apis/time_util.h" | |
| 20 #include "content/public/test/test_browser_thread_bundle.h" | 19 #include "content/public/test/test_browser_thread_bundle.h" |
| 20 #include "google_apis/drive/time_util.h" |
| 21 #include "net/base/io_buffer.h" | 21 #include "net/base/io_buffer.h" |
| 22 #include "net/base/net_errors.h" | 22 #include "net/base/net_errors.h" |
| 23 #include "net/base/test_completion_callback.h" | 23 #include "net/base/test_completion_callback.h" |
| 24 #include "testing/gtest/include/gtest/gtest.h" | 24 #include "testing/gtest/include/gtest/gtest.h" |
| 25 | 25 |
| 26 namespace drive { | 26 namespace drive { |
| 27 namespace internal { | 27 namespace internal { |
| 28 | 28 |
| 29 class WebkitFileStreamReaderImplTest : public ::testing::Test { | 29 class WebkitFileStreamReaderImplTest : public ::testing::Test { |
| 30 protected: | 30 protected: |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 base::Time::FromInternalValue(1))); | 199 base::Time::FromInternalValue(1))); |
| 200 | 200 |
| 201 net::TestInt64CompletionCallback callback; | 201 net::TestInt64CompletionCallback callback; |
| 202 int64 result = reader->GetLength(callback.callback()); | 202 int64 result = reader->GetLength(callback.callback()); |
| 203 result = callback.GetResult(result); | 203 result = callback.GetResult(result); |
| 204 EXPECT_EQ(net::ERR_UPLOAD_FILE_CHANGED, result); | 204 EXPECT_EQ(net::ERR_UPLOAD_FILE_CHANGED, result); |
| 205 } | 205 } |
| 206 | 206 |
| 207 } // namespace internal | 207 } // namespace internal |
| 208 } // namespace drive | 208 } // namespace drive |
| OLD | NEW |