| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium 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 "public/fpdf_edit.h" | 5 #include "public/fpdf_edit.h" |
| 6 #include "public/fpdfview.h" | 6 #include "public/fpdfview.h" |
| 7 #include "testing/embedder_test.h" | 7 #include "testing/embedder_test.h" |
| 8 #include "testing/gmock/include/gmock/gmock-matchers.h" | 8 #include "testing/gmock/include/gmock/gmock-matchers.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 #include "testing/test_support.h" | 10 #include "testing/test_support.h" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "trailer\r\n" | 51 "trailer\r\n" |
| 52 "<<\r\n" | 52 "<<\r\n" |
| 53 "/Root 1 0 R\r\n" | 53 "/Root 1 0 R\r\n" |
| 54 "/Info 3 0 R\r\n" | 54 "/Info 3 0 R\r\n" |
| 55 "/Size 6/ID\\[<.*><.*>\\]>>\r\n" | 55 "/Size 6/ID\\[<.*><.*>\\]>>\r\n" |
| 56 "startxref\r\n" | 56 "startxref\r\n" |
| 57 "379\r\n" | 57 "379\r\n" |
| 58 "%%EOF\r\n")); | 58 "%%EOF\r\n")); |
| 59 FPDFPage_Delete(document(), 1); | 59 FPDFPage_Delete(document(), 1); |
| 60 } | 60 } |
| OLD | NEW |