diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-15 17:06:56 -0500 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-16 19:54:41 -0500 | 
| commit | 8a127e07f32545fdb45e2e8afba4dedd0ae5b955 (patch) | |
| tree | 3cb8d9c2d6bb073aeb2c11c6b2007e78db538855 /ext/fg/js | |
| parent | 525a3a50d11c282e2b38596dcccc2d6671c0bd63 (diff) | |
Mark private message handlers
Diffstat (limited to 'ext/fg/js')
| -rw-r--r-- | ext/fg/js/popup-proxy-host.js | 36 | 
1 files changed, 18 insertions, 18 deletions
| diff --git a/ext/fg/js/popup-proxy-host.js b/ext/fg/js/popup-proxy-host.js index c4217307..c7c15efe 100644 --- a/ext/fg/js/popup-proxy-host.js +++ b/ext/fg/js/popup-proxy-host.js @@ -39,15 +39,15 @@ class PopupProxyHost {          if (typeof frameId !== 'number') { return; }          this.apiReceiver = new FrontendApiReceiver(`popup-proxy-host#${frameId}`, new Map([ -            ['createNestedPopup', ({parentId}) => this.createNestedPopup(parentId)], -            ['setOptions', ({id, options}) => this.setOptions(id, options)], -            ['hide', ({id, changeFocus}) => this.hide(id, changeFocus)], -            ['isVisibleAsync', ({id}) => this.isVisibleAsync(id)], -            ['setVisibleOverride', ({id, visible}) => this.setVisibleOverride(id, visible)], -            ['containsPoint', ({id, x, y}) => this.containsPoint(id, x, y)], -            ['showContent', ({id, elementRect, writingMode, type, details}) => this.showContent(id, elementRect, writingMode, type, details)], -            ['setCustomCss', ({id, css}) => this.setCustomCss(id, css)], -            ['clearAutoPlayTimer', ({id}) => this.clearAutoPlayTimer(id)] +            ['createNestedPopup', ({parentId}) => this._onApiCreateNestedPopup(parentId)], +            ['setOptions', ({id, options}) => this._onApiSetOptions(id, options)], +            ['hide', ({id, changeFocus}) => this._onApiHide(id, changeFocus)], +            ['isVisibleAsync', ({id}) => this._onApiIsVisibleAsync(id)], +            ['setVisibleOverride', ({id, visible}) => this._onApiSetVisibleOverride(id, visible)], +            ['containsPoint', ({id, x, y}) => this._onApiContainsPoint(id, x, y)], +            ['showContent', ({id, elementRect, writingMode, type, details}) => this._onApiShowContent(id, elementRect, writingMode, type, details)], +            ['setCustomCss', ({id, css}) => this._onApiSetCustomCss(id, css)], +            ['clearAutoPlayTimer', ({id}) => this._onApiClearAutoPlayTimer(id)]          ]));      } @@ -69,48 +69,48 @@ class PopupProxyHost {      // Message handlers -    async createNestedPopup(parentId) { +    async _onApiCreateNestedPopup(parentId) {          return this.createPopup(parentId, 0).id;      } -    async setOptions(id, options) { +    async _onApiSetOptions(id, options) {          const popup = this._getPopup(id);          return await popup.setOptions(options);      } -    async hide(id, changeFocus) { +    async _onApiHide(id, changeFocus) {          const popup = this._getPopup(id);          return popup.hide(changeFocus);      } -    async isVisibleAsync(id) { +    async _onApiIsVisibleAsync(id) {          const popup = this._getPopup(id);          return await popup.isVisibleAsync();      } -    async setVisibleOverride(id, visible) { +    async _onApiSetVisibleOverride(id, visible) {          const popup = this._getPopup(id);          return await popup.setVisibleOverride(visible);      } -    async containsPoint(id, x, y) { +    async _onApiContainsPoint(id, x, y) {          const popup = this._getPopup(id);          return await popup.containsPoint(x, y);      } -    async showContent(id, elementRect, writingMode, type, details) { +    async _onApiShowContent(id, elementRect, writingMode, type, details) {          const popup = this._getPopup(id);          elementRect = PopupProxyHost._convertJsonRectToDOMRect(popup, elementRect);          if (!PopupProxyHost._popupCanShow(popup)) { return Promise.resolve(false); }          return await popup.showContent(elementRect, writingMode, type, details);      } -    async setCustomCss(id, css) { +    async _onApiSetCustomCss(id, css) {          const popup = this._getPopup(id);          return popup.setCustomCss(css);      } -    async clearAutoPlayTimer(id) { +    async _onApiClearAutoPlayTimer(id) {          const popup = this._getPopup(id);          return popup.clearAutoPlayTimer();      } |