Commit 0e22ecd6 authored by battre@chromium.org's avatar battre@chromium.org

Fix crasher due to const-ref to non-existing variable

TBR=jam@chromium.org
BUG=101476
TEST=no

Review URL: http://codereview.chromium.org/8392001

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107107 0039d316-1c4b-4281-b951-d872f2087c98
parent 98e4e52f
...@@ -146,7 +146,7 @@ class WebResourceService::UnpackerClient : public UtilityProcessHost::Client { ...@@ -146,7 +146,7 @@ class WebResourceService::UnpackerClient : public UtilityProcessHost::Client {
} }
private: private:
~UnpackerClient() {} virtual ~UnpackerClient() {}
// UtilityProcessHost::Client // UtilityProcessHost::Client
virtual bool OnMessageReceived(const IPC::Message& message) { virtual bool OnMessageReceived(const IPC::Message& message) {
...@@ -201,7 +201,7 @@ class WebResourceService::UnpackerClient : public UtilityProcessHost::Client { ...@@ -201,7 +201,7 @@ class WebResourceService::UnpackerClient : public UtilityProcessHost::Client {
scoped_refptr<WebResourceService> web_resource_service_; scoped_refptr<WebResourceService> web_resource_service_;
// Holds raw JSON string. // Holds raw JSON string.
const std::string& json_data_; std::string json_data_;
// True if we got a response from the utility process and have cleaned up // True if we got a response from the utility process and have cleaned up
// already. // already.
......
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