OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "pdf/pdfium/pdfium_page.h" | 5 #include "pdf/pdfium/pdfium_page.h" |
6 | 6 |
7 #include <math.h> | 7 #include <math.h> |
| 8 #include <stddef.h> |
8 | 9 |
9 #include "base/logging.h" | 10 #include "base/logging.h" |
10 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
11 #include "base/strings/string_util.h" | 12 #include "base/strings/string_util.h" |
12 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
13 #include "base/values.h" | 14 #include "base/values.h" |
14 #include "pdf/pdfium/pdfium_api_string_buffer_adapter.h" | 15 #include "pdf/pdfium/pdfium_api_string_buffer_adapter.h" |
15 #include "pdf/pdfium/pdfium_engine.h" | 16 #include "pdf/pdfium/pdfium_engine.h" |
16 | 17 |
17 // Used when doing hit detection. | 18 // Used when doing hit detection. |
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
527 page_->loading_count_--; | 528 page_->loading_count_--; |
528 } | 529 } |
529 | 530 |
530 PDFiumPage::Link::Link() { | 531 PDFiumPage::Link::Link() { |
531 } | 532 } |
532 | 533 |
533 PDFiumPage::Link::~Link() { | 534 PDFiumPage::Link::~Link() { |
534 } | 535 } |
535 | 536 |
536 } // namespace chrome_pdf | 537 } // namespace chrome_pdf |
OLD | NEW |