| Index: pdf/pdfium/pdfium_engine.cc
|
| diff --git a/pdf/pdfium/pdfium_engine.cc b/pdf/pdfium/pdfium_engine.cc
|
| index 606180a4ac98977df3c3b3754e283c62aeb185ff..e8c164b03ac0dd2f8066ef7b385e59a8803d1449 100644
|
| --- a/pdf/pdfium/pdfium_engine.cc
|
| +++ b/pdf/pdfium/pdfium_engine.cc
|
| @@ -1964,8 +1964,6 @@
|
| 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;
|
| @@ -2023,8 +2021,6 @@
|
| 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();
|
| @@ -2192,8 +2188,6 @@
|
| 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());
|
| }
|
| }
|
|
|
|
|