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

Side by Side Diff: content/public/common/context_menu_params.cc

Issue 2803233002: Change default value of has_image_contents (Closed)
Patch Set: Rebase 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/public/web/WebContextMenuData.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_t CustomContextMenuContext::kCurrentRenderWidget = INT32_MAX; 9 const int32_t CustomContextMenuContext::kCurrentRenderWidget = INT32_MAX;
10 10
11 CustomContextMenuContext::CustomContextMenuContext() 11 CustomContextMenuContext::CustomContextMenuContext()
12 : is_pepper_menu(false), 12 : is_pepper_menu(false),
13 request_id(0), 13 request_id(0),
14 render_widget_id(kCurrentRenderWidget) { 14 render_widget_id(kCurrentRenderWidget) {
15 } 15 }
16 16
17 ContextMenuParams::ContextMenuParams() 17 ContextMenuParams::ContextMenuParams()
18 : media_type(blink::WebContextMenuData::kMediaTypeNone), 18 : media_type(blink::WebContextMenuData::kMediaTypeNone),
19 x(0), 19 x(0),
20 y(0), 20 y(0),
21 has_image_contents(true), 21 has_image_contents(false),
22 media_flags(0), 22 media_flags(0),
23 spellcheck_enabled(false), 23 spellcheck_enabled(false),
24 is_editable(false), 24 is_editable(false),
25 writing_direction_default( 25 writing_direction_default(
26 blink::WebContextMenuData::kCheckableMenuItemDisabled), 26 blink::WebContextMenuData::kCheckableMenuItemDisabled),
27 writing_direction_left_to_right( 27 writing_direction_left_to_right(
28 blink::WebContextMenuData::kCheckableMenuItemEnabled), 28 blink::WebContextMenuData::kCheckableMenuItemEnabled),
29 writing_direction_right_to_left( 29 writing_direction_right_to_left(
30 blink::WebContextMenuData::kCheckableMenuItemEnabled), 30 blink::WebContextMenuData::kCheckableMenuItemEnabled),
31 edit_flags(0), 31 edit_flags(0),
32 referrer_policy(blink::kWebReferrerPolicyDefault), 32 referrer_policy(blink::kWebReferrerPolicyDefault),
33 source_type(ui::MENU_SOURCE_NONE), 33 source_type(ui::MENU_SOURCE_NONE),
34 input_field_type(blink::WebContextMenuData::kInputFieldTypeNone) {} 34 input_field_type(blink::WebContextMenuData::kInputFieldTypeNone) {}
35 35
36 ContextMenuParams::ContextMenuParams(const ContextMenuParams& other) = default; 36 ContextMenuParams::ContextMenuParams(const ContextMenuParams& other) = default;
37 37
38 ContextMenuParams::~ContextMenuParams() { 38 ContextMenuParams::~ContextMenuParams() {
39 } 39 }
40 40
41 } // namespace content 41 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/public/web/WebContextMenuData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698