| Index: content/browser/screen_orientation/screen_orientation_dispatcher_host.cc
 | 
| ===================================================================
 | 
| --- content/browser/screen_orientation/screen_orientation_dispatcher_host.cc	(revision 271040)
 | 
| +++ content/browser/screen_orientation/screen_orientation_dispatcher_host.cc	(working copy)
 | 
| @@ -19,16 +19,14 @@
 | 
|  }
 | 
|  
 | 
|  bool ScreenOrientationDispatcherHost::OnMessageReceived(
 | 
| -    const IPC::Message& message, bool* message_was_ok) {
 | 
| +    const IPC::Message& message) {
 | 
|    bool handled = true;
 | 
|  
 | 
| -  IPC_BEGIN_MESSAGE_MAP_EX(ScreenOrientationDispatcherHost,
 | 
| -                           message,
 | 
| -                           *message_was_ok)
 | 
| +  IPC_BEGIN_MESSAGE_MAP(ScreenOrientationDispatcherHost, message)
 | 
|      IPC_MESSAGE_HANDLER(ScreenOrientationHostMsg_Lock, OnLockRequest)
 | 
|      IPC_MESSAGE_HANDLER(ScreenOrientationHostMsg_Unlock, OnUnlockRequest)
 | 
|      IPC_MESSAGE_UNHANDLED(handled = false)
 | 
| -  IPC_END_MESSAGE_MAP_EX()
 | 
| +  IPC_END_MESSAGE_MAP()
 | 
|  
 | 
|    return handled;
 | 
|  }
 | 
| 
 |