Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1925)

Unified Diff: content/browser/browser_url_handler_impl.h

Issue 11274038: content/browser: Move more files into the content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win - part2 Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/browser_main_runner.cc ('k') | content/browser/browser_url_handler_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_url_handler_impl.h
diff --git a/content/browser/browser_url_handler_impl.h b/content/browser/browser_url_handler_impl.h
index 3ab559c174f4423f6e1c46490c00f3c1ad637df2..8b7fce965b724ae3dfa28b4bc1710c7477b18a94 100644
--- a/content/browser/browser_url_handler_impl.h
+++ b/content/browser/browser_url_handler_impl.h
@@ -16,24 +16,24 @@ class GURL;
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,
URLHandler reverse_handler) OVERRIDE;
// Reverses the rewriting that was done for |original| using the new |url|.
- bool ReverseURLRewrite(GURL* url, const GURL& original,
- content::BrowserContext* browser_context);
+ bool ReverseURLRewrite(GURL* url,
+ const GURL& original,
+ BrowserContext* browser_context);
private:
// This object is a singleton:
@@ -51,4 +51,6 @@ class CONTENT_EXPORT BrowserURLHandlerImpl : public content::BrowserURLHandler {
DISALLOW_COPY_AND_ASSIGN(BrowserURLHandlerImpl);
};
+} // namespace content
+
#endif // CONTENT_BROWSER_BROWSER_URL_HANDLER_IMPL_H_
« no previous file with comments | « content/browser/browser_main_runner.cc ('k') | content/browser/browser_url_handler_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698