diff options
author | dsinclair <dsinclair@chromium.org> | 2016-06-13 12:38:29 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-13 12:38:29 -0700 |
commit | 4044d2db97922a28708d358e3aa580df53329ff9 (patch) | |
tree | 7e978e9c80a88660531376ed4fd87f548bb0886e /fxjse/context.h | |
parent | 993d817e5e500f281baf37c4027e0f7b0bac7998 (diff) | |
download | pdfium-4044d2db97922a28708d358e3aa580df53329ff9.tar.xz |
Remove V8_INLINE markers.
The V8_INLINE tag is for internal V8 usage only and should not be used by
embedders. I've removed it to let the compiler decide on the inlining, if we
determine in the future things need to be force inlined we can add our own
inlining wrapper.
BUG=pdfium:514
Review-Url: https://codereview.chromium.org/2063723002
Diffstat (limited to 'fxjse/context.h')
-rw-r--r-- | fxjse/context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fxjse/context.h b/fxjse/context.h index 91356a09b8..869fbfb1fb 100644 --- a/fxjse/context.h +++ b/fxjse/context.h @@ -26,7 +26,7 @@ class CFXJSE_Context { CFXJSE_HostObject* lpGlobalObject = nullptr); ~CFXJSE_Context(); - V8_INLINE v8::Isolate* GetRuntime(void) { return m_pIsolate; } + v8::Isolate* GetRuntime(void) { return m_pIsolate; } std::unique_ptr<CFXJSE_Value> GetGlobalObject(); void EnableCompatibleMode(); FX_BOOL ExecuteScript(const FX_CHAR* szScript, |