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

Unified Diff: chrome/renderer/render_view.cc

Issue 20072: Finish taking out render_messages.h include from other headers. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 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: chrome/renderer/render_view.cc
===================================================================
--- chrome/renderer/render_view.cc (revision 9207)
+++ chrome/renderer/render_view.cc (working copy)
@@ -21,6 +21,7 @@
#include "chrome/common/jstemplate_builder.h"
#include "chrome/common/l10n_util.h"
#include "chrome/common/page_zoom.h"
+#include "chrome/common/render_messages.h"
#include "chrome/common/resource_bundle.h"
#include "chrome/common/thumbnail_score.h"
#include "chrome/renderer/about_handler.h"
@@ -2012,7 +2013,7 @@
const std::wstring& misspelled_word,
int edit_flags,
const std::string& security_info) {
- ViewHostMsg_ContextMenu_Params params;
+ ContextMenuParams params;
params.node = node;
params.x = x;
params.y = y;
@@ -2667,8 +2668,8 @@
}
void RenderView::OnGetAccessibilityInfo(
- const ViewMsg_Accessibility_In_Params& in_params,
- ViewHostMsg_Accessibility_Out_Params* out_params) {
+ const AccessibilityInParams& in_params,
+ AccessibilityOutParams* out_params) {
#if defined(OS_WIN)
if (!glue_accessibility_.get())
glue_accessibility_.reset(new GlueAccessibility());

Powered by Google App Engine
This is Rietveld 408576698