diff options
author | dsinclair <dsinclair@chromium.org> | 2016-09-22 10:20:43 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-22 10:20:43 -0700 |
commit | 577ad2c9ea89c721ee1dbb89d1f7e12bb8c333f7 (patch) | |
tree | 7e298b611fd4bf07713c35d01c6bc9b900758191 /xfa/fxfa/include/fxfa.h | |
parent | bb577af2f17467a55c04fbff21a8f0ec1016601a (diff) | |
download | pdfium-577ad2c9ea89c721ee1dbb89d1f7e12bb8c333f7.tar.xz |
Move CPDFSDK_Environment code to cpp file
This CL moves the code from the .h file into the .cpp file.
Review-Url: https://codereview.chromium.org/2354363003
Diffstat (limited to 'xfa/fxfa/include/fxfa.h')
-rw-r--r-- | xfa/fxfa/include/fxfa.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/xfa/fxfa/include/fxfa.h b/xfa/fxfa/include/fxfa.h index 04fabeec11..1ffcbf7dbb 100644 --- a/xfa/fxfa/include/fxfa.h +++ b/xfa/fxfa/include/fxfa.h @@ -321,9 +321,7 @@ class IXFA_DocEnvironment { virtual void ExportData(CXFA_FFDoc* hDoc, const CFX_WideString& wsFilePath, FX_BOOL bXDP) = 0; - virtual void GotoURL(CXFA_FFDoc* hDoc, - const CFX_WideString& bsURL, - FX_BOOL bAppend) = 0; + virtual void GotoURL(CXFA_FFDoc* hDoc, const CFX_WideString& bsURL) = 0; virtual FX_BOOL IsValidationsEnabled(CXFA_FFDoc* hDoc) = 0; virtual void SetValidationsEnabled(CXFA_FFDoc* hDoc, FX_BOOL bEnabled) = 0; virtual void SetFocusWidget(CXFA_FFDoc* hDoc, CXFA_FFWidget* hWidget) = 0; |