Esempio n. 1
0
 private DefaultInspectorModulesBuilder provideIfDesired(ChromeDevtoolsDomain module) {
   mDelegate.provideIfDesired(module.getClass().getName(), module);
   return this;
 }
Esempio n. 2
0
 /**
  * Provide either a new domain module or override an existing one.
  *
  * @deprecated This fine-grained control of the devtools modules is no longer supportable given
  *     the lack of isolation of modules in the actual protocol (many cross dependencies emerge
  *     when you implement more and more of the real protocol).
  */
 @Deprecated
 public DefaultInspectorModulesBuilder provide(ChromeDevtoolsDomain module) {
   mDelegate.provide(module.getClass().getName(), module);
   return this;
 }