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

Unified Diff: ipc/ipc_message_utils.h

Issue 12220101: Minimal Chrome Frame with Aura. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed inclusion of web_contents_view.h from automation_provider_win.h. see patch set 5 for trybot… 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: ipc/ipc_message_utils.h
diff --git a/ipc/ipc_message_utils.h b/ipc/ipc_message_utils.h
index fc72210059e2f939f0510251f3569715f4ec96f6..c775d8da00ebf29f08b8b96d0da84dafccc151be 100644
--- a/ipc/ipc_message_utils.h
+++ b/ipc/ipc_message_utils.h
@@ -475,6 +475,13 @@ struct SimilarTypeTraits<base::PlatformFileError> {
typedef int Type;
};
+#if defined(OS_WIN)
+template <>
+struct SimilarTypeTraits<HWND> {
+ typedef HANDLE Type;
jam 2013/02/27 20:35:34 we already send HWNDs in IPCs, so I'm not sure why
grt (UTC plus 2) 2013/02/28 02:48:41 That code sends HANDLEs, not HWNDs. In practice, t
+};
+#endif // defined(OS_WIN)
+
template <>
struct IPC_EXPORT ParamTraits<base::Time> {
typedef base::Time param_type;

Powered by Google App Engine
This is Rietveld 408576698