Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Issue 2252373002: Re-write many calls to WrapUnique() with MakeUnique() (Closed)

Created:
4 years, 4 months ago by Adam Rice
Modified:
4 years, 4 months ago
CC:
Aaron Boodman, abarth-chromium, ben+mojo_chromium.org, chromium-apps-reviews_chromium.org, chromium-reviews, darin (slow to review), extensions-reviews_chromium.org, qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Re-write many calls to WrapUnique() with MakeUnique() A mostly-automated change to convert instances of WrapUnique(new Foo(...)) to MakeUnique<Foo>(...). See the thread at https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/iQgMedVA8-k for background. To avoid requiring too many manual fixups, the change skips some cases that are frequently problematic. In particular, in methods named Foo::Method() it will not try to change WrapUnique(new Foo()) to MakeUnique<Foo>(). This is because Foo::Method() may be accessing an internal constructor of Foo. Cases where MakeUnique<NestedClass>(...) is called within a method of OuterClass are common but hard to detect automatically, so have been fixed-up manually. The only types of manual fix ups applied are: 1) Revert MakeUnique back to WrapUnique 2) Change NULL to nullptr in argument list (MakeUnique cannot forward NULL correctly) 3) Add base:: namespace qualifier where missing. WrapUnique(new Foo) has not been converted to MakeUnique<Foo>() as this might change behaviour if Foo does not have a user-defined constructor. For example, WrapUnique(new int) creates an unitialised integer, but MakeUnique<int>() creates an integer initialised to 0. git cl format has been been run over the CL. Spot-checking has uncovered no cases of mis-formatting. BUG=637812 Committed: https://crrev.com/5e27337b381e1ee8c487f4b4cab71a9a0e6d1b0f Cr-Commit-Position: refs/heads/master@{#413392}

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+118 lines, -121 lines) Patch
M extensions/browser/api/cast_channel/cast_channel_api.cc View 2 chunks +4 lines, -5 lines 0 comments Download
M extensions/browser/api/extensions_api_client.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/browser/api/hid/hid_apitest.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/browser/api/hid/hid_device_manager.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M extensions/browser/api/idle/idle_api_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/browser/api/networking_config/networking_config_service.cc View 1 chunk +3 lines, -3 lines 0 comments Download
M extensions/browser/api/networking_config/networking_config_service_factory.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/browser/api/serial/serial_connection.cc View 2 chunks +4 lines, -4 lines 0 comments Download
M extensions/browser/api/sockets_tcp/sockets_tcp_api_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/browser/api/sockets_udp/sockets_udp_api_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/browser/api/storage/storage_api_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/browser/api/usb/usb_apitest.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/browser/event_listener_map_unittest.cc View 1 chunk +3 lines, -3 lines 0 comments Download
M extensions/browser/event_router_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/browser/extension_function.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/browser/extension_prefs.cc View 2 chunks +5 lines, -6 lines 0 comments Download
M extensions/browser/extension_protocols.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M extensions/browser/extension_throttle_manager.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M extensions/browser/guest_view/extension_options/extension_options_guest.cc View 3 chunks +7 lines, -7 lines 0 comments Download
M extensions/browser/guest_view/extension_view/extension_view_guest.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M extensions/browser/guest_view/web_view/web_view_find_helper.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M extensions/browser/guest_view/web_view/web_view_guest.cc View 14 chunks +34 lines, -34 lines 0 comments Download
M extensions/browser/guest_view/web_view/web_view_permission_helper.cc View 1 chunk +6 lines, -6 lines 0 comments Download
M extensions/browser/lazy_background_task_queue_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/browser/load_monitoring_extension_host_queue_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/browser/mojo/stash_backend.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M extensions/browser/user_script_loader.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M extensions/browser/value_store/legacy_value_store_factory.cc View 2 chunks +6 lines, -6 lines 0 comments Download
M extensions/browser/value_store/value_store_change_unittest.cc View 3 chunks +5 lines, -5 lines 0 comments Download
M extensions/common/permissions/settings_override_permission.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/common/value_counter.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/renderer/event_bindings.cc View 2 chunks +3 lines, -4 lines 0 comments Download
M extensions/renderer/i18n_custom_bindings.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M extensions/renderer/script_injection_manager.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/shell/browser/shell_desktop_controller_aura.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M extensions/shell/browser/shell_extension_system.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/shell/browser/shell_extensions_browser_client.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/shell/browser/shell_native_app_window_aura_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M extensions/shell/browser/shell_url_request_context_getter.cc View 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 12 (7 generated)
Adam Rice
4 years, 4 months ago (2016-08-19 08:12:53 UTC) #6
Reilly Grant (use Gerrit)
lgtm
4 years, 4 months ago (2016-08-19 17:12:32 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2252373002/1
4 years, 4 months ago (2016-08-22 01:54:03 UTC) #9
commit-bot: I haz the power
Committed patchset #1 (id:1)
4 years, 4 months ago (2016-08-22 02:51:21 UTC) #10
commit-bot: I haz the power
4 years, 4 months ago (2016-08-22 02:52:28 UTC) #12
Message was sent while issue was closed.
Patchset 1 (id:??) landed as
https://crrev.com/5e27337b381e1ee8c487f4b4cab71a9a0e6d1b0f
Cr-Commit-Position: refs/heads/master@{#413392}

Powered by Google App Engine
This is Rietveld 408576698