OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/renderer/context_menu_params_builder.h" | 5 #include "content/renderer/context_menu_params_builder.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "content/common/ssl_status_serialization.h" | 8 #include "content/common/ssl_status_serialization.h" |
9 #include "content/public/common/context_menu_params.h" | 9 #include "content/public/common/context_menu_params.h" |
10 #include "content/public/renderer/history_item_serialization.h" | 10 #include "content/renderer/history_serialization.h" |
11 #include "content/renderer/menu_item_builder.h" | 11 #include "content/renderer/menu_item_builder.h" |
12 #include "third_party/WebKit/public/web/WebElement.h" | 12 #include "third_party/WebKit/public/web/WebElement.h" |
13 #include "third_party/WebKit/public/web/WebNode.h" | 13 #include "third_party/WebKit/public/web/WebNode.h" |
14 | 14 |
15 namespace content { | 15 namespace content { |
16 | 16 |
17 // static | 17 // static |
18 ContextMenuParams ContextMenuParamsBuilder::Build( | 18 ContextMenuParams ContextMenuParamsBuilder::Build( |
19 const blink::WebContextMenuData& data) { | 19 const blink::WebContextMenuData& data) { |
20 ContextMenuParams params; | 20 ContextMenuParams params; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 ¶ms.security_info.cert_id, ¶ms.security_info.cert_status, | 77 ¶ms.security_info.cert_id, ¶ms.security_info.cert_status, |
78 ¶ms.security_info.security_bits, | 78 ¶ms.security_info.security_bits, |
79 ¶ms.security_info.connection_status, | 79 ¶ms.security_info.connection_status, |
80 ¶ms.security_info.signed_certificate_timestamp_ids); | 80 ¶ms.security_info.signed_certificate_timestamp_ids); |
81 } | 81 } |
82 | 82 |
83 return params; | 83 return params; |
84 } | 84 } |
85 | 85 |
86 } // namespace content | 86 } // namespace content |
OLD | NEW |