Skip to content

Commit

Permalink
Remove implicit conversions from scoped_refptr to T* in cloud_print/
Browse files Browse the repository at this point in the history
This patch was generated by running the rewrite_scoped_refptr clang tool
on a Windows build.

BUG=110610

Review URL: https://codereview.chromium.org/745323002

Cr-Commit-Position: refs/heads/master@{#305255}
  • Loading branch information
zetafunction authored and Commit bot committed Nov 21, 2014
1 parent 87ab240 commit ff8ae65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud_print/service/win/cloud_print_service_config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ int WINAPI WinMain(__in HINSTANCE hInstance,
scoped_refptr<SetupDialog> dialog(new SetupDialog());
dialog->Create(NULL);
dialog->ShowWindow(SW_SHOW);
SetupDialog::Dispatcher dispatcher(dialog);
SetupDialog::Dispatcher dispatcher(dialog.get());
base::RunLoop run_loop(&dispatcher);
run_loop.Run();
return 0;
Expand Down

0 comments on commit ff8ae65

Please sign in to comment.