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

Unified Diff: chrome/browser/browser_accessibility_manager.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/browser/browser_accessibility_manager.cc
===================================================================
--- chrome/browser/browser_accessibility_manager.cc (revision 9207)
+++ chrome/browser/browser_accessibility_manager.cc (working copy)
@@ -8,6 +8,7 @@
#include "chrome/browser/renderer_host/render_process_host.h"
#include "chrome/browser/renderer_host/render_widget_host.h"
#include "chrome/common/notification_service.h"
+#include "chrome/common/render_messages.h"
// The time in ms after which we give up and return an error when processing an
// accessibility message and no response has been received from the renderer.
@@ -80,7 +81,7 @@
int iaccessible_id, int instance_id, int iaccessible_func_id,
VARIANT var_id, LONG input1, LONG input2) {
// Create and populate input message structure.
- ViewMsg_Accessibility_In_Params in_params;
+ AccessibilityInParams in_params;
in_params.iaccessible_id = iaccessible_id;
in_params.iaccessible_function_id = iaccessible_func_id;
@@ -116,8 +117,7 @@
return success;
}
-const ViewHostMsg_Accessibility_Out_Params&
-BrowserAccessibilityManager::response() {
+const AccessibilityOutParams& BrowserAccessibilityManager::response() {
return out_params_;
}

Powered by Google App Engine
This is Rietveld 408576698