summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/input/context_menu_allowed_scope.cc
blob: f024f5817ceeaa6043e536db7ad87eb57ea47860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/input/context_menu_allowed_scope.h"

namespace blink {

static unsigned g_context_menu_allowed_count = 0;

ContextMenuAllowedScope::ContextMenuAllowedScope() {
  g_context_menu_allowed_count++;
}

ContextMenuAllowedScope::~ContextMenuAllowedScope() {
  DCHECK_GT(g_context_menu_allowed_count, 0U);
  g_context_menu_allowed_count--;
}

bool ContextMenuAllowedScope::IsContextMenuAllowed() {
  return g_context_menu_allowed_count;
}

}  // namespace blink