| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "webkit/common/database/database_identifier.h" | 5 #include "storage/common/database/database_identifier.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 #include "url/gurl.h" | 9 #include "url/gurl.h" |
| 10 | 10 |
| 11 using webkit_database::DatabaseIdentifier; | 11 using webkit_database::DatabaseIdentifier; |
| 12 | 12 |
| 13 namespace content { | 13 namespace content { |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 << "test case " << bogus_components[i]; | 238 << "test case " << bogus_components[i]; |
| 239 EXPECT_EQ(GURL("null"), identifier.ToOrigin()) | 239 EXPECT_EQ(GURL("null"), identifier.ToOrigin()) |
| 240 << "test case " << bogus_components[i]; | 240 << "test case " << bogus_components[i]; |
| 241 EXPECT_EQ(true, identifier.is_unique()) | 241 EXPECT_EQ(true, identifier.is_unique()) |
| 242 << "test case " << bogus_components[i]; | 242 << "test case " << bogus_components[i]; |
| 243 } | 243 } |
| 244 } | 244 } |
| 245 | 245 |
| 246 } // namespace | 246 } // namespace |
| 247 } // namespace content | 247 } // namespace content |
| OLD | NEW |