Bug 1704628 Part 4: Avoid use of ESC to close context menu in browser_toolbox_content...
[gecko.git] / parser / html / nsHtml5AutoPauseUpdate.h
blobf7c91d9786aa6da404d50f0ea47a8619045fe313
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=2 sw=2 et tw=78: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsHtml5AutoPauseUpdate_h
8 #define nsHtml5AutoPauseUpdate_h
10 class MOZ_RAII nsHtml5AutoPauseUpdate final {
11 private:
12 RefPtr<nsHtml5DocumentBuilder> mBuilder;
14 public:
15 explicit nsHtml5AutoPauseUpdate(nsHtml5DocumentBuilder* aBuilder)
16 : mBuilder(aBuilder) {
17 mBuilder->EndDocUpdate();
19 ~nsHtml5AutoPauseUpdate() {
20 // Something may have terminated the parser during the update pause.
21 if (!mBuilder->IsComplete()) {
22 mBuilder->BeginDocUpdate();
27 #endif // nsHtml5AutoPauseUpdate_h