Index: chrome/browser/chromeos/gdata/gdata_operations.cc |
=================================================================== |
--- chrome/browser/chromeos/gdata/gdata_operations.cc (revision 147421) |
+++ chrome/browser/chromeos/gdata/gdata_operations.cc (working copy) |
@@ -502,8 +502,7 @@ |
return true; |
} |
-bool AuthorizeAppsOperation::ParseResponse(GDataErrorCode fetch_error_code, |
- const std::string& data) { |
+base::Value* AuthorizeAppsOperation::ParseResponse(const std::string& data) { |
// Parse entry XML. |
XmlReader xml_reader; |
scoped_ptr<DocumentEntry> entry; |
@@ -532,8 +531,7 @@ |
} |
} |
- RunCallback(fetch_error_code, link_list.PassAs<base::Value>()); |
- return true; |
+ return link_list.release(); |
} |
GURL AuthorizeAppsOperation::GetURL() const { |