blob: 33be2ab5e5eb04622a497ce5361c44d0b62ec8ae [file] [log] [blame]
// 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 "core/input/ContextMenuAllowedScope.h"
namespace blink {
static unsigned g_context_menu_allowed_count = 0;
ContextMenuAllowedScope::ContextMenuAllowedScope() {
g_context_menu_allowed_count++;
}
ContextMenuAllowedScope::~ContextMenuAllowedScope() {
g_context_menu_allowed_count--;
}
bool ContextMenuAllowedScope::IsContextMenuAllowed() {
return g_context_menu_allowed_count;
}
} // namespace blink