| Index: chrome/browser/content_settings/permission_context_base.h | 
| diff --git a/chrome/browser/content_settings/permission_context_base.h b/chrome/browser/content_settings/permission_context_base.h | 
| index 5a4e62d59d087bee1e88369d9cd1543bba7e0dbe..2814ccedcef0a3f53934cf277dda2b5b5ab18187 100644 | 
| --- a/chrome/browser/content_settings/permission_context_base.h | 
| +++ b/chrome/browser/content_settings/permission_context_base.h | 
| @@ -78,12 +78,12 @@ class PermissionContextBase : public KeyedService { | 
| // Decide whether the permission should be granted. | 
| // Calls PermissionDecided if permission can be decided non-interactively, | 
| // or NotifyPermissionSet if permission decided by presenting an infobar. | 
| -  void DecidePermission(content::WebContents* web_contents, | 
| -                        const PermissionRequestID& id, | 
| -                        const GURL& requesting_origin, | 
| -                        const GURL& embedder_origin, | 
| -                        bool user_gesture, | 
| -                        const BrowserPermissionCallback& callback); | 
| +  virtual void DecidePermission(content::WebContents* web_contents, | 
| +                                const PermissionRequestID& id, | 
| +                                const GURL& requesting_origin, | 
| +                                const GURL& embedder_origin, | 
| +                                bool user_gesture, | 
| +                                const BrowserPermissionCallback& callback); | 
|  | 
| // Called when permission is granted without interactively asking the user. | 
| void PermissionDecided(const PermissionRequestID& id, | 
| @@ -93,12 +93,12 @@ class PermissionContextBase : public KeyedService { | 
| bool persist, | 
| bool allowed); | 
|  | 
| -  void NotifyPermissionSet(const PermissionRequestID& id, | 
| -                           const GURL& requesting_origin, | 
| -                           const GURL& embedder_origin, | 
| -                           const BrowserPermissionCallback& callback, | 
| -                           bool persist, | 
| -                           bool allowed); | 
| +  virtual void NotifyPermissionSet(const PermissionRequestID& id, | 
| +                                   const GURL& requesting_origin, | 
| +                                   const GURL& embedder_origin, | 
| +                                   const BrowserPermissionCallback& callback, | 
| +                                   bool persist, | 
| +                                   bool allowed); | 
|  | 
| // Implementors can override this method to update the icons on the | 
| // url bar with the result of the new permission. | 
| @@ -117,7 +117,6 @@ class PermissionContextBase : public KeyedService { | 
| bool allowed); | 
|  | 
| private: | 
| - | 
| // Called when a bubble is no longer used so it can be cleaned up. | 
| void CleanUpBubble(const PermissionRequestID& id); | 
|  | 
|  |