| Index: extensions/browser/guest_view/guest_view_base.h
|
| diff --git a/extensions/browser/guest_view/guest_view_base.h b/extensions/browser/guest_view/guest_view_base.h
|
| index 8ce638c6f492624ba0beed54e3659e0515075dc3..210675223c0bf71eb8f09dd42a48674c51d0850f 100644
|
| --- a/extensions/browser/guest_view/guest_view_base.h
|
| +++ b/extensions/browser/guest_view/guest_view_base.h
|
| @@ -145,7 +145,11 @@ class GuestViewBase : public content::BrowserPluginGuestDelegate,
|
| //
|
| // This should be the name of the API as it appears in the _api_features.json
|
| // file.
|
| - virtual const char* GetAPINamespace() = 0;
|
| + virtual const char* GetAPINamespace() const = 0;
|
| +
|
| + // This method is to be implemented by the derived class. This method is the
|
| + // task name to show for a task produced by this GuestViewBase's derived type.
|
| + virtual base::string16 GetTaskName() const;
|
|
|
| // This method is to be implemented by the derived class. Given a set of
|
| // initialization parameters, a concrete subclass of GuestViewBase can
|
|
|