summaryrefslogtreecommitdiffstats
path: root/pdf/pdfium/pdfium_engine.cc
diff options
context:
space:
mode:
Diffstat (limited to 'pdf/pdfium/pdfium_engine.cc')
-rw-r--r--pdf/pdfium/pdfium_engine.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/pdf/pdfium/pdfium_engine.cc b/pdf/pdfium/pdfium_engine.cc
index 42f69e7..8fe2695 100644
--- a/pdf/pdfium/pdfium_engine.cc
+++ b/pdf/pdfium/pdfium_engine.cc
@@ -2046,8 +2046,6 @@ std::string PDFiumEngine::GetPageAsJSON(int index) {
if (index < 0 || static_cast<size_t>(index) > pages_.size() - 1)
return "{}";
- // TODO(thestig) Remove after debugging http://crbug.com/402035
- CHECK(pages_[index]);
scoped_ptr<base::Value> node(
pages_[index]->GetAccessibleContentAsValue(current_rotation_));
std::string page_json;
@@ -2105,8 +2103,6 @@ void PDFiumEngine::AppendBlankPages(int num_pages) {
page_rect.height() * kPointsPerInch / kPixelsPerInch;
FPDFPage_New(doc_, i, width_in_points, height_in_points);
pages_.push_back(new PDFiumPage(this, i, page_rect, true));
- // TODO(thestig) Remove after debugging http://crbug.com/402035
- CHECK(pages_.back());
}
CalculateVisiblePages();
@@ -2274,8 +2270,6 @@ void PDFiumEngine::LoadPageInfo(bool reload) {
pages_[i]->set_rect(page_rect);
} else {
pages_.push_back(new PDFiumPage(this, i, page_rect, doc_complete));
- // TODO(thestig) Remove after debugging http://crbug.com/402035
- CHECK(pages_.back());
}
}