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

Unified Diff: content/common/view_messages.h

Issue 12335101: Move some accessibility methods, enums and interfaces into the content/public API. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rename From() -> Create() Created 7 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: content/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index 62e50c935b9d9e0bc0e9f59fc07a8ee35fa7551b..3182fe4f13a8e8fbba6a58bb1e0143f46206a156 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -17,6 +17,7 @@
#include "content/common/pepper_renderer_instance_data.h"
#include "content/common/view_message_enums.h"
#include "content/port/common/input_event_ack_state.h"
+#include "content/public/common/accessibility_mode.h"
#include "content/public/common/common_param_traits.h"
#include "content/public/common/context_menu_params.h"
#include "content/public/common/file_chooser_params.h"
@@ -64,7 +65,7 @@
#define IPC_MESSAGE_START ViewMsgStart
-IPC_ENUM_TRAITS(AccessibilityMode)
+IPC_ENUM_TRAITS(content::AccessibilityMode)
IPC_ENUM_TRAITS(ViewMsg_Navigate_Type::Value)
IPC_ENUM_TRAITS(WebKit::WebContextMenuData::MediaType)
IPC_ENUM_TRAITS(WebKit::WebMediaPlayerAction::Type)
@@ -665,7 +666,7 @@ IPC_STRUCT_BEGIN(ViewMsg_New_Params)
IPC_STRUCT_MEMBER(WebKit::WebScreenInfo, screen_info)
// The accessibility mode of the renderer.
- IPC_STRUCT_MEMBER(AccessibilityMode, accessibility_mode)
+ IPC_STRUCT_MEMBER(content::AccessibilityMode, accessibility_mode)
IPC_STRUCT_END()
IPC_STRUCT_BEGIN(ViewMsg_PostMessage_Params)
@@ -1291,7 +1292,7 @@ IPC_MESSAGE_CONTROL1(ViewMsg_TempCrashWithData,
// Change the accessibility mode in the renderer process.
IPC_MESSAGE_ROUTED1(ViewMsg_SetAccessibilityMode,
- AccessibilityMode)
+ content::AccessibilityMode)
// An acknowledge to ViewHostMsg_MultipleTargetsTouched to notify the renderer
// process to release the magnified image.

Powered by Google App Engine
This is Rietveld 408576698