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

Unified Diff: third_party/WebKit/public/web/WebContextMenuData.h

Issue 2785853002: Selection Action mode triggered like a context menu (Closed)
Patch Set: fix tests Created 3 years, 7 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/public/web/WebContextMenuData.h
diff --git a/third_party/WebKit/public/web/WebContextMenuData.h b/third_party/WebKit/public/web/WebContextMenuData.h
index 6ecc250272e248ed3dd6a77775222d26fc3b184d..69a591e37755bce88c789b7771510f391b166a27 100644
--- a/third_party/WebKit/public/web/WebContextMenuData.h
+++ b/third_party/WebKit/public/web/WebContextMenuData.h
@@ -31,15 +31,15 @@
#ifndef WebContextMenuData_h
#define WebContextMenuData_h
+#include "WebHistoryItem.h"
+#include "WebMenuItemInfo.h"
#include "public/platform/WebPoint.h"
+#include "public/platform/WebRect.h"
#include "public/platform/WebReferrerPolicy.h"
#include "public/platform/WebString.h"
#include "public/platform/WebURL.h"
#include "public/platform/WebURLResponse.h"
#include "public/platform/WebVector.h"
-#include "WebHistoryItem.h"
-#include "WebMenuItemInfo.h"
-#include "public/platform/WebRect.h"
#define WEBCONTEXT_MEDIATYPEFILE_DEFINED
@@ -193,6 +193,8 @@ struct WebContextMenuData {
// Selection in viewport coordinates.
WebRect selection_rect;
+ bool from_select_all;
+
WebContextMenuData()
: media_type(kMediaTypeNone),
has_image_contents(false),
@@ -202,7 +204,8 @@ struct WebContextMenuData {
writing_direction_default(kCheckableMenuItemDisabled),
writing_direction_left_to_right(kCheckableMenuItemEnabled),
writing_direction_right_to_left(kCheckableMenuItemEnabled),
- edit_flags(0) {}
+ edit_flags(0),
+ from_select_all(false) {}
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698