Chromium Code Reviews| Index: pdf/pdf_engine.h |
| diff --git a/pdf/pdf_engine.h b/pdf/pdf_engine.h |
| index b81494f02fa8c287ce169871e7844422d0f0cd8a..16e70bbe85cf43ecd4b31634609f0fa00147fefb 100644 |
| --- a/pdf/pdf_engine.h |
| +++ b/pdf/pdf_engine.h |
| @@ -27,6 +27,7 @@ |
| namespace pp { |
| class InputEvent; |
| +class VarDictionary; |
| } |
| const uint32 kBackgroundColor = 0xFFCCCCCC; |
| @@ -260,6 +261,9 @@ class PDFEngine { |
| virtual void SetScrollPosition(const pp::Point& position) = 0; |
| virtual bool IsProgressiveLoad() = 0; |
| + |
| + virtual unsigned long GetNameDestCount() = 0; |
|
raymes
2015/01/14 00:19:00
We don't need this anymore
Deepak
2015/01/14 06:29:01
Done.
|
| + virtual pp::VarDictionary GetAllNamedDestinations() = 0; |
|
raymes
2015/01/14 00:19:00
nit: let's just call it GetNamedDestinations
Deepak
2015/01/14 06:29:01
Done.
|
| }; |
| // Interface for exports that wrap the PDF engine. |