| 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_parser.h" | 13 #include "chrome/browser/chromeos/gdata/gdata_parser.h" |
| 14 #include "chrome/common/chrome_paths.h" | 14 #include "chrome/common/chrome_paths.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 | 16 |
| 17 using base::Value; | 17 using base::Value; |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 ASSERT_TRUE(file_parent_link); | 142 ASSERT_TRUE(file_parent_link); |
| 143 EXPECT_EQ("https://file_link_parent/", file_parent_link->href().spec()); | 143 EXPECT_EQ("https://file_link_parent/", file_parent_link->href().spec()); |
| 144 EXPECT_EQ("application/atom+xml", file_parent_link->mime_type()); | 144 EXPECT_EQ("application/atom+xml", file_parent_link->mime_type()); |
| 145 EXPECT_EQ(ASCIIToUTF16("Medical"), file_parent_link->title()); | 145 EXPECT_EQ(ASCIIToUTF16("Medical"), file_parent_link->title()); |
| 146 | 146 |
| 147 // Check a file entry. | 147 // Check a file entry. |
| 148 const DocumentEntry* document_entry = feed->entries()[2]; | 148 const DocumentEntry* document_entry = feed->entries()[2]; |
| 149 ASSERT_TRUE(document_entry); | 149 ASSERT_TRUE(document_entry); |
| 150 EXPECT_EQ(gdata::DocumentEntry::DOCUMENT, document_entry->kind()); | 150 EXPECT_EQ(gdata::DocumentEntry::DOCUMENT, document_entry->kind()); |
| 151 } | 151 } |
| OLD | NEW |