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

Unified Diff: chrome/browser/extensions/extension_resource_protocols.cc

Issue 10383272: Coverity: Initialize a member variable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_resource_protocols.cc
diff --git a/chrome/browser/extensions/extension_resource_protocols.cc b/chrome/browser/extensions/extension_resource_protocols.cc
index 238535586ca6553ee3942df61028239db22ce65d..84907ce45efa7dafbe777dfbc2bf0488eeb2f30c 100644
--- a/chrome/browser/extensions/extension_resource_protocols.cc
+++ b/chrome/browser/extensions/extension_resource_protocols.cc
@@ -16,12 +16,14 @@ namespace {
class ExtensionResourcesJob : public net::URLRequestFileJob {
public:
explicit ExtensionResourcesJob(net::URLRequest* request)
- : net::URLRequestFileJob(request, FilePath()) { }
+ : net::URLRequestFileJob(request, FilePath()),
+ thread_id_(content::BrowserThread::UI) {
+ }
virtual void Start() OVERRIDE;
protected:
- ~ExtensionResourcesJob() { }
+ ~ExtensionResourcesJob() {}
void ResolvePath();
void ResolvePathDone();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698