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

Unified Diff: ppapi/cpp/module.h

Issue 5574006: Start deinlining non-empty virtual methods. (This will be automatically checked (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove virtual from VideoFrame::type() Created 10 years 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 | « net/spdy/spdy_http_stream.cc ('k') | ppapi/cpp/module.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_; }
« no previous file with comments | « net/spdy/spdy_http_stream.cc ('k') | ppapi/cpp/module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698