| 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_file_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_wapi_parser.h" | 13 #include "chrome/browser/chromeos/gdata/gdata_wapi_parser.h" |
| 14 #include "chrome/browser/chromeos/gdata/gdata_util.h" | 14 #include "chrome/browser/google_apis/gdata_util.h" |
| 15 #include "chrome/common/chrome_paths.h" | 15 #include "chrome/common/chrome_paths.h" |
| 16 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
| 17 #include "third_party/libxml/chromium/libxml_utils.h" | 17 #include "third_party/libxml/chromium/libxml_utils.h" |
| 18 | 18 |
| 19 using base::Value; | 19 using base::Value; |
| 20 using base::DictionaryValue; | 20 using base::DictionaryValue; |
| 21 using base::ListValue; | 21 using base::ListValue; |
| 22 | 22 |
| 23 namespace gdata { | 23 namespace gdata { |
| 24 | 24 |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 DocumentEntry::ClassifyEntryKind(DocumentEntry::EXTERNAL_APP)); | 395 DocumentEntry::ClassifyEntryKind(DocumentEntry::EXTERNAL_APP)); |
| 396 EXPECT_EQ(DocumentEntry::KIND_OF_FOLDER, | 396 EXPECT_EQ(DocumentEntry::KIND_OF_FOLDER, |
| 397 DocumentEntry::ClassifyEntryKind(DocumentEntry::FOLDER)); | 397 DocumentEntry::ClassifyEntryKind(DocumentEntry::FOLDER)); |
| 398 EXPECT_EQ(DocumentEntry::KIND_OF_FILE, | 398 EXPECT_EQ(DocumentEntry::KIND_OF_FILE, |
| 399 DocumentEntry::ClassifyEntryKind(DocumentEntry::FILE)); | 399 DocumentEntry::ClassifyEntryKind(DocumentEntry::FILE)); |
| 400 EXPECT_EQ(DocumentEntry::KIND_OF_FILE, | 400 EXPECT_EQ(DocumentEntry::KIND_OF_FILE, |
| 401 DocumentEntry::ClassifyEntryKind(DocumentEntry::PDF)); | 401 DocumentEntry::ClassifyEntryKind(DocumentEntry::PDF)); |
| 402 } | 402 } |
| 403 | 403 |
| 404 } // namespace gdata | 404 } // namespace gdata |
| OLD | NEW |