0
Files
src/pdf/pdf_engine.cc
Nico Weber 40cd26fdbc Remove a few more semicolons.
TBR=rsesek

Bug: 926235
Change-Id: Ibaf250d761cc5f0fc5e334319c12ecb09f7e69c6
Reviewed-on: https://chromium-review.googlesource.com/c/1461320
Commit-Queue: Nico Weber <thakis@chromium.org>
Auto-Submit: Nico Weber <thakis@chromium.org>
Reviewed-by: Scott Violet <sky@chromium.org>
Cr-Commit-Position: refs/heads/master@{#630638}
2019-02-09 17:37:02 +00:00

21 lines
549 B
C++

// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "pdf/pdf_engine.h"
namespace chrome_pdf {
PDFEngine::PageFeatures::PageFeatures() {}
PDFEngine::PageFeatures::PageFeatures(const PageFeatures& other)
: index(other.index), annotation_types(other.annotation_types) {}
PDFEngine::PageFeatures::~PageFeatures() {}
bool PDFEngine::PageFeatures::IsInitialized() const {
return index >= 0;
}
} // namespace chrome_pdf