| Index: ppapi/cpp/module.h
 | 
| diff --git a/ppapi/cpp/module.h b/ppapi/cpp/module.h
 | 
| index 308d3ceed12e88e45ddadfcfd1f0f8ff971968d2..f3e8af7fe23f50ec228f284043539982a2edb0d4 100644
 | 
| --- a/ppapi/cpp/module.h
 | 
| +++ b/ppapi/cpp/module.h
 | 
| @@ -35,7 +35,7 @@ class Module {
 | 
|    // This function will be automatically called after the object is created.
 | 
|    // This is where you can put functions that rely on other parts of the API,
 | 
|    // now that the module has been created.
 | 
| -  virtual bool Init() { return true; }
 | 
| +  virtual bool Init();
 | 
|  
 | 
|    // Returns the internal module handle.
 | 
|    PP_Module pp_module() const { return pp_module_; }
 | 
| 
 |