Commit 6842087a authored by jhawkins@chromium.org's avatar jhawkins@chromium.org

Coverity: Initialize a member variable.

CID_COUNT=1
CID=104054
BUG=none
TEST=none
R=groby
TBR=aa

Review URL: https://chromiumcodereview.appspot.com/10383272

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138155 0039d316-1c4b-4281-b951-d872f2087c98
parent 3109f75e
...@@ -16,12 +16,14 @@ namespace { ...@@ -16,12 +16,14 @@ namespace {
class ExtensionResourcesJob : public net::URLRequestFileJob { class ExtensionResourcesJob : public net::URLRequestFileJob {
public: public:
explicit ExtensionResourcesJob(net::URLRequest* request) explicit ExtensionResourcesJob(net::URLRequest* request)
: net::URLRequestFileJob(request, FilePath()) { } : net::URLRequestFileJob(request, FilePath()),
thread_id_(content::BrowserThread::UI) {
}
virtual void Start() OVERRIDE; virtual void Start() OVERRIDE;
protected: protected:
~ExtensionResourcesJob() { } ~ExtensionResourcesJob() {}
void ResolvePath(); void ResolvePath();
void ResolvePathDone(); void ResolvePathDone();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment