| 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_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 "chrome/common/libxml_utils.h" | 15 #include "libxml/libxml_utils.h" |
| 16 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
| 17 | 17 |
| 18 using base::Value; | 18 using base::Value; |
| 19 using base::DictionaryValue; | 19 using base::DictionaryValue; |
| 20 using base::ListValue; | 20 using base::ListValue; |
| 21 | 21 |
| 22 namespace gdata { | 22 namespace gdata { |
| 23 | 23 |
| 24 class GDataParserTest : public testing::Test { | 24 class GDataParserTest : public testing::Test { |
| 25 protected: | 25 protected: |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 FilePath(FILE_PATH_LITERAL("Test.tar.gz")))); | 270 FilePath(FILE_PATH_LITERAL("Test.tar.gz")))); |
| 271 EXPECT_FALSE(DocumentEntry::HasHostedDocumentExtension( | 271 EXPECT_FALSE(DocumentEntry::HasHostedDocumentExtension( |
| 272 FilePath(FILE_PATH_LITERAL("Test.txt")))); | 272 FilePath(FILE_PATH_LITERAL("Test.txt")))); |
| 273 EXPECT_FALSE(DocumentEntry::HasHostedDocumentExtension( | 273 EXPECT_FALSE(DocumentEntry::HasHostedDocumentExtension( |
| 274 FilePath(FILE_PATH_LITERAL("Test")))); | 274 FilePath(FILE_PATH_LITERAL("Test")))); |
| 275 EXPECT_FALSE(DocumentEntry::HasHostedDocumentExtension( | 275 EXPECT_FALSE(DocumentEntry::HasHostedDocumentExtension( |
| 276 FilePath(FILE_PATH_LITERAL("")))); | 276 FilePath(FILE_PATH_LITERAL("")))); |
| 277 } | 277 } |
| 278 | 278 |
| 279 } // namespace gdata | 279 } // namespace gdata |
| OLD | NEW |