| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/public/common/context_menu_params.h" | 5 #include "content/public/common/context_menu_params.h" |
| 6 | 6 |
| 7 namespace content { | 7 namespace content { |
| 8 | 8 |
| 9 const int32 CustomContextMenuContext::kCurrentRenderWidget = kint32max; | 9 const int32 CustomContextMenuContext::kCurrentRenderWidget = kint32max; |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 spellcheck_enabled(false), | 24 spellcheck_enabled(false), |
| 25 is_editable(false), | 25 is_editable(false), |
| 26 writing_direction_default( | 26 writing_direction_default( |
| 27 blink::WebContextMenuData::CheckableMenuItemDisabled), | 27 blink::WebContextMenuData::CheckableMenuItemDisabled), |
| 28 writing_direction_left_to_right( | 28 writing_direction_left_to_right( |
| 29 blink::WebContextMenuData::CheckableMenuItemEnabled), | 29 blink::WebContextMenuData::CheckableMenuItemEnabled), |
| 30 writing_direction_right_to_left( | 30 writing_direction_right_to_left( |
| 31 blink::WebContextMenuData::CheckableMenuItemEnabled), | 31 blink::WebContextMenuData::CheckableMenuItemEnabled), |
| 32 edit_flags(0), | 32 edit_flags(0), |
| 33 referrer_policy(blink::WebReferrerPolicyDefault), | 33 referrer_policy(blink::WebReferrerPolicyDefault), |
| 34 source_type(ui::MENU_SOURCE_NONE) { | 34 source_type(ui::MENU_SOURCE_NONE), |
| 35 input_field_type(blink::WebContextMenuData::InputFieldTypeNone) { |
| 35 } | 36 } |
| 36 | 37 |
| 37 ContextMenuParams::~ContextMenuParams() { | 38 ContextMenuParams::~ContextMenuParams() { |
| 38 } | 39 } |
| 39 | 40 |
| 40 } // namespace content | 41 } // namespace content |
| OLD | NEW |