| Index: google_apis/gcm/engine/fake_connection_handler.cc
|
| diff --git a/google_apis/gcm/engine/fake_connection_handler.cc b/google_apis/gcm/engine/fake_connection_handler.cc
|
| index 86c2561d35755920779318817fb7df5b5584c5a7..ca0ba5ae01ad673b80dac380124e4ed699063b19 100644
|
| --- a/google_apis/gcm/engine/fake_connection_handler.cc
|
| +++ b/google_apis/gcm/engine/fake_connection_handler.cc
|
| @@ -16,8 +16,9 @@ namespace gcm {
|
| namespace {
|
|
|
| // Build a basic login response.
|
| -scoped_ptr<google::protobuf::MessageLite> BuildLoginResponse(bool fail_login) {
|
| - scoped_ptr<mcs_proto::LoginResponse> login_response(
|
| +std::unique_ptr<google::protobuf::MessageLite> BuildLoginResponse(
|
| + bool fail_login) {
|
| + std::unique_ptr<mcs_proto::LoginResponse> login_response(
|
| new mcs_proto::LoginResponse());
|
| login_response->set_id("id");
|
| if (fail_login)
|
|
|