summaryrefslogtreecommitdiffstats
path: root/mojo
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-04 16:49:33 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-04 16:49:33 +0000
commit2901c8c9c418cb8a271d9eac1ede81edf9ef15e4 (patch)
tree25cd284b36500052a28592117953822c01803ad0 /mojo
parent35a76d5e41c2e992b26732efca841e2bc8bdc9ca (diff)
downloadchromium_src-2901c8c9c418cb8a271d9eac1ede81edf9ef15e4.zip
chromium_src-2901c8c9c418cb8a271d9eac1ede81edf9ef15e4.tar.gz
chromium_src-2901c8c9c418cb8a271d9eac1ede81edf9ef15e4.tar.bz2
Remove unnecessary const (causes compile error on Mac)
R=darin@chromium.org TBR=darin@chromium.org BUG=none Review URL: https://codereview.chromium.org/46973006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232720 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo')
-rw-r--r--mojo/shell/handle_watcher.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/mojo/shell/handle_watcher.cc b/mojo/shell/handle_watcher.cc
index 5352db0..bfc1bb1 100644
--- a/mojo/shell/handle_watcher.cc
+++ b/mojo/shell/handle_watcher.cc
@@ -109,8 +109,8 @@ class WatcherThreadManager {
// is identified as invalid.
void RemoveHandle(MojoHandle handle);
- const MojoHandle read_handle() const { return control_pipe_.handle_0(); }
- const MojoHandle write_handle() const { return control_pipe_.handle_1(); }
+ MojoHandle read_handle() const { return control_pipe_.handle_0(); }
+ MojoHandle write_handle() const { return control_pipe_.handle_1(); }
// Returns state needed for MojoWaitMany.
WaitState GetWaitState();