| Index: sandbox/win/src/crosscall_params.h
|
| diff --git a/sandbox/win/src/crosscall_params.h b/sandbox/win/src/crosscall_params.h
|
| index a601fc77b2f9ec63f4623f6099f5df8529eef859..c060c607c4ff16133dc33ab244278c32c84f8b44 100644
|
| --- a/sandbox/win/src/crosscall_params.h
|
| +++ b/sandbox/win/src/crosscall_params.h
|
| @@ -114,7 +114,7 @@ class CrossCallParams {
|
| }
|
|
|
| // Returns how many parameter this IPC call should have.
|
| - const uint32_t GetParamsCount() const { return params_count_; }
|
| + uint32_t GetParamsCount() const { return params_count_; }
|
|
|
| // Returns a pointer to the CrossCallReturn structure.
|
| CrossCallReturn* GetCallReturn() {
|
| @@ -122,9 +122,7 @@ class CrossCallParams {
|
| }
|
|
|
| // Returns TRUE if this call contains InOut parameters.
|
| - const bool IsInOut() const {
|
| - return (1 == is_in_out_);
|
| - }
|
| + bool IsInOut() const { return (1 == is_in_out_); }
|
|
|
| // Tells the CrossCall object if it contains InOut parameters.
|
| void SetIsInOut(bool value) {
|
|
|