Browse Source

chore: remove unused WrappableBase::AfterInit() (#42974)

last caller removed in 6159066c (#22916)
Charles Kerr 9 months ago
parent
commit
8c8a7709e6
2 changed files with 0 additions and 5 deletions
  1. 0 2
      shell/common/gin_helper/wrappable.cc
  2. 0 3
      shell/common/gin_helper/wrappable_base.h

+ 0 - 2
shell/common/gin_helper/wrappable.cc

@@ -56,8 +56,6 @@ void WrappableBase::InitWith(v8::Isolate* isolate,
   v8::Local<v8::Function> init;
   if (Dictionary(isolate, wrapper).Get("_init", &init))
     init->Call(isolate->GetCurrentContext(), wrapper, 0, nullptr).IsEmpty();
-
-  AfterInit(isolate);
 }
 
 // static

+ 0 - 3
shell/common/gin_helper/wrappable_base.h

@@ -45,9 +45,6 @@ class WrappableBase {
   v8::Isolate* isolate() const { return isolate_; }
 
  protected:
-  // Called after the "_init" method gets called in JavaScript.
-  virtual void AfterInit(v8::Isolate* isolate) {}
-
   // Bind the C++ class to the JS wrapper.
   // This method should only be called by classes using Constructor.
   virtual void InitWith(v8::Isolate* isolate, v8::Local<v8::Object> wrapper);