Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: third_party/WebKit/Source/web/ContextMenuAllowedScope.cpp

Issue 2785853002: Selection Action mode triggered like a context menu (Closed)
Patch Set: Fixing rebase bug Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/ContextMenuAllowedScope.cpp
diff --git a/third_party/WebKit/Source/web/ContextMenuAllowedScope.cpp b/third_party/WebKit/Source/web/ContextMenuAllowedScope.cpp
deleted file mode 100644
index e64bb498ad9200e07a77cca852cc1f7536aeb1f8..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/web/ContextMenuAllowedScope.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-// 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 "web/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

Powered by Google App Engine
This is Rietveld 408576698