| Index: content/browser/browser_url_handler_impl.h
|
| ===================================================================
|
| --- content/browser/browser_url_handler_impl.h (revision 164795)
|
| +++ content/browser/browser_url_handler_impl.h (working copy)
|
| @@ -16,16 +16,15 @@
|
|
|
| namespace content {
|
| class BrowserContext;
|
| -}
|
|
|
| -class CONTENT_EXPORT BrowserURLHandlerImpl : public content::BrowserURLHandler {
|
| +class CONTENT_EXPORT BrowserURLHandlerImpl : public BrowserURLHandler {
|
| public:
|
| // Returns the singleton instance.
|
| static BrowserURLHandlerImpl* GetInstance();
|
|
|
| // BrowserURLHandler implementation:
|
| virtual void RewriteURLIfNecessary(GURL* url,
|
| - content::BrowserContext* browser_context,
|
| + BrowserContext* browser_context,
|
| bool* reverse_on_redirect) OVERRIDE;
|
| // Add the specified handler pair to the list of URL handlers.
|
| virtual void AddHandlerPair(URLHandler handler,
|
| @@ -33,7 +32,7 @@
|
|
|
| // Reverses the rewriting that was done for |original| using the new |url|.
|
| bool ReverseURLRewrite(GURL* url, const GURL& original,
|
| - content::BrowserContext* browser_context);
|
| + BrowserContext* browser_context);
|
|
|
| private:
|
| // This object is a singleton:
|
| @@ -51,4 +50,6 @@
|
| DISALLOW_COPY_AND_ASSIGN(BrowserURLHandlerImpl);
|
| };
|
|
|
| +} // namespace content
|
| +
|
| #endif // CONTENT_BROWSER_BROWSER_URL_HANDLER_IMPL_H_
|
|
|