| 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 <stddef.h> | 5 #include <stddef.h> |
| 6 | 6 |
| 7 #include <cmath> | 7 #include <cmath> |
| 8 | 8 |
| 9 #include "base/base64.h" | 9 #include "base/base64.h" |
| 10 #include "base/files/file_util.h" | 10 #include "base/files/file_util.h" |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 } | 432 } |
| 433 | 433 |
| 434 TEST_F(PageStateSerializationTest, BackwardsCompat_v21) { | 434 TEST_F(PageStateSerializationTest, BackwardsCompat_v21) { |
| 435 TestBackwardsCompat(21); | 435 TestBackwardsCompat(21); |
| 436 } | 436 } |
| 437 | 437 |
| 438 TEST_F(PageStateSerializationTest, BackwardsCompat_v22) { | 438 TEST_F(PageStateSerializationTest, BackwardsCompat_v22) { |
| 439 TestBackwardsCompat(22); | 439 TestBackwardsCompat(22); |
| 440 } | 440 } |
| 441 | 441 |
| 442 TEST_F(PageStateSerializationTest, BackwardsCompat_v23) { | |
| 443 TestBackwardsCompat(23); | |
| 444 } | |
| 445 | |
| 446 } // namespace | 442 } // namespace |
| 447 } // namespace content | 443 } // namespace content |
| OLD | NEW |