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

Side by Side Diff: content/renderer/context_menu_params_builder.cc

Issue 246163006: Move history serialization from contet/public/renderer/ to content/renderer/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix braces Created 6 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 | Annotate | Revision Log
« no previous file with comments | « content/public/test/render_view_test.cc ('k') | content/renderer/history_serialization.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) 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
77 &params.security_info.cert_id, &params.security_info.cert_status, 77 &params.security_info.cert_id, &params.security_info.cert_status,
78 &params.security_info.security_bits, 78 &params.security_info.security_bits,
79 &params.security_info.connection_status, 79 &params.security_info.connection_status,
80 &params.security_info.signed_certificate_timestamp_ids); 80 &params.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
OLDNEW
« no previous file with comments | « content/public/test/render_view_test.cc ('k') | content/renderer/history_serialization.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698