| Index: pdf/out_of_process_instance.h
|
| diff --git a/pdf/out_of_process_instance.h b/pdf/out_of_process_instance.h
|
| index 050f3617b55ee33b9ec8d7aa275f27eb4aa7672b..2779020bec10e7adfc1367419b222d13a457c094 100644
|
| --- a/pdf/out_of_process_instance.h
|
| +++ b/pdf/out_of_process_instance.h
|
| @@ -91,52 +91,52 @@ class OutOfProcessInstance : public pp::Instance,
|
| void OnPrint(int32_t);
|
|
|
| // PDFEngine::Client implementation.
|
| - virtual void DocumentSizeUpdated(const pp::Size& size);
|
| - virtual void Invalidate(const pp::Rect& rect);
|
| - virtual void Scroll(const pp::Point& point);
|
| - virtual void ScrollToX(int position);
|
| - virtual void ScrollToY(int position);
|
| - virtual void ScrollToPage(int page);
|
| - virtual void NavigateTo(const std::string& url, bool open_in_new_tab);
|
| - virtual void UpdateCursor(PP_CursorType_Dev cursor);
|
| - virtual void UpdateTickMarks(const std::vector<pp::Rect>& tickmarks);
|
| - virtual void NotifyNumberOfFindResultsChanged(int total, bool final_result);
|
| - virtual void NotifySelectedFindResultChanged(int current_find_index);
|
| - virtual void GetDocumentPassword(
|
| - pp::CompletionCallbackWithOutput<pp::Var> callback);
|
| - virtual void Alert(const std::string& message);
|
| - virtual bool Confirm(const std::string& message);
|
| - virtual std::string Prompt(const std::string& question,
|
| - const std::string& default_answer);
|
| - virtual std::string GetURL();
|
| - virtual void Email(const std::string& to,
|
| - const std::string& cc,
|
| - const std::string& bcc,
|
| - const std::string& subject,
|
| - const std::string& body);
|
| - virtual void Print();
|
| - virtual void SubmitForm(const std::string& url,
|
| - const void* data,
|
| - int length);
|
| - virtual std::string ShowFileSelectionDialog();
|
| - virtual pp::URLLoader CreateURLLoader();
|
| - virtual void ScheduleCallback(int id, int delay_in_ms);
|
| - virtual void SearchString(const base::char16* string,
|
| - const base::char16* term,
|
| - bool case_sensitive,
|
| - std::vector<SearchStringResult>* results);
|
| - virtual void DocumentPaintOccurred();
|
| - virtual void DocumentLoadComplete(int page_count);
|
| - virtual void DocumentLoadFailed();
|
| - virtual pp::Instance* GetPluginInstance();
|
| - virtual void DocumentHasUnsupportedFeature(const std::string& feature);
|
| - virtual void DocumentLoadProgress(uint32 available, uint32 doc_size);
|
| - virtual void FormTextFieldFocusChange(bool in_focus);
|
| - virtual bool IsPrintPreview();
|
| + void DocumentSizeUpdated(const pp::Size& size) override;
|
| + void Invalidate(const pp::Rect& rect) override;
|
| + void Scroll(const pp::Point& point) override;
|
| + void ScrollToX(int position) override;
|
| + void ScrollToY(int position) override;
|
| + void ScrollToPage(int page) override;
|
| + void NavigateTo(const std::string& url, bool open_in_new_tab) override;
|
| + void UpdateCursor(PP_CursorType_Dev cursor) override;
|
| + void UpdateTickMarks(const std::vector<pp::Rect>& tickmarks) override;
|
| + void NotifyNumberOfFindResultsChanged(int total, bool final_result) override;
|
| + void NotifySelectedFindResultChanged(int current_find_index) override;
|
| + void GetDocumentPassword(
|
| + pp::CompletionCallbackWithOutput<pp::Var> callback) override;
|
| + void Alert(const std::string& message) override;
|
| + bool Confirm(const std::string& message) override;
|
| + std::string Prompt(const std::string& question,
|
| + const std::string& default_answer) override;
|
| + std::string GetURL() override;
|
| + void Email(const std::string& to,
|
| + const std::string& cc,
|
| + const std::string& bcc,
|
| + const std::string& subject,
|
| + const std::string& body) override;
|
| + void Print() override;
|
| + void SubmitForm(const std::string& url,
|
| + const void* data,
|
| + int length) override;
|
| + std::string ShowFileSelectionDialog() override;
|
| + pp::URLLoader CreateURLLoader() override;
|
| + void ScheduleCallback(int id, int delay_in_ms) override;
|
| + void SearchString(const base::char16* string,
|
| + const base::char16* term,
|
| + bool case_sensitive,
|
| + std::vector<SearchStringResult>* results) override;
|
| + void DocumentPaintOccurred() override;
|
| + void DocumentLoadComplete(int page_count) override;
|
| + void DocumentLoadFailed() override;
|
| + pp::Instance* GetPluginInstance() override;
|
| + void DocumentHasUnsupportedFeature(const std::string& feature) override;
|
| + void DocumentLoadProgress(uint32 available, uint32 doc_size) override;
|
| + void FormTextFieldFocusChange(bool in_focus) override;
|
| + bool IsPrintPreview() override;
|
|
|
| // PreviewModeClient::Client implementation.
|
| - virtual void PreviewDocumentLoadComplete() override;
|
| - virtual void PreviewDocumentLoadFailed() override;
|
| + void PreviewDocumentLoadComplete() override;
|
| + void PreviewDocumentLoadFailed() override;
|
|
|
| // Helper functions for implementing PPP_PDF.
|
| void RotateClockwise();
|
|
|