Index: content/browser/net/view_blob_internals_job_factory.cc |
=================================================================== |
--- content/browser/net/view_blob_internals_job_factory.cc (revision 164642) |
+++ content/browser/net/view_blob_internals_job_factory.cc (working copy) |
@@ -9,6 +9,8 @@ |
#include "content/public/common/url_constants.h" |
#include "webkit/blob/view_blob_internals_job.h" |
+namespace content { |
+ |
// static. |
bool ViewBlobInternalsJobFactory::IsSupportedURL(const GURL& url) { |
return url.SchemeIs(chrome::kChromeUIScheme) && |
@@ -23,3 +25,5 @@ |
return new webkit_blob::ViewBlobInternalsJob( |
request, network_delegate, blob_storage_controller); |
} |
+ |
+} // namespace content |