blob: 0022bed5571da15c68ab7a9a7959bf26bc1df64f [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 "config.h"
#include "ContextMenuAllowedScope.h"
namespace blink {
static unsigned s_ContextMenuAllowedCount = 0;
ContextMenuAllowedScope::ContextMenuAllowedScope()
{
s_ContextMenuAllowedCount++;
}
ContextMenuAllowedScope::~ContextMenuAllowedScope()
{
s_ContextMenuAllowedCount--;
}
bool ContextMenuAllowedScope::isContextMenuAllowed()
{
return s_ContextMenuAllowedCount;
}
} // namespace blink