
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}
21 lines
549 B
C++
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
|