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

Unified Diff: util/mach/exc_server_variants.h

Issue 564533002: MachMessageServer: Make request messages const (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | util/mach/exc_server_variants.cc » ('j') | util/mach/exc_server_variants.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/mach/exc_server_variants.h
diff --git a/util/mach/exc_server_variants.h b/util/mach/exc_server_variants.h
index 08e770aabbe395918c468d836abd5209579f346c..81651cec7a5f6451a1a22cf8cf50883f56d9edb2 100644
--- a/util/mach/exc_server_variants.h
+++ b/util/mach/exc_server_variants.h
@@ -104,7 +104,7 @@ class ExcServer : public MachMessageServer::Interface {
// MachMessageServer::Interface:
virtual bool MachMessageServerFunction(
- mach_msg_header_t* in_header,
+ const mach_msg_header_t* in_header,
mach_msg_header_t* out_header,
bool* destroy_complex_request) override;
@@ -192,7 +192,7 @@ class MachExcServer : public MachMessageServer::Interface {
// MachMessageServer::Interface:
virtual bool MachMessageServerFunction(
- mach_msg_header_t* in_header,
+ const mach_msg_header_t* in_header,
mach_msg_header_t* out_header,
bool* destroy_complex_request) override;
@@ -402,7 +402,7 @@ class UniversalMachExcServer
// MachMessageServer::Interface:
virtual bool MachMessageServerFunction(
- mach_msg_header_t* in_header,
+ const mach_msg_header_t* in_header,
mach_msg_header_t* out_header,
bool* destroy_complex_request) override;
« no previous file with comments | « no previous file | util/mach/exc_server_variants.cc » ('j') | util/mach/exc_server_variants.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698