Commit 2a9b2dc9 authored by Chris Watkins's avatar Chris Watkins Committed by Commit Bot

Use =default and =delete in //third_party/WebKit/Source/controller

See the bugs for details. This change was done using clang-tidy as
described here:
https://chromium.googlesource.com/chromium/src/+/lkcr/docs/clang_tidy.md

Where the tool replaces a member initializer list it leaves behind commas
(https://bugs.llvm.org/show_bug.cgi?id=35051). They were cleaned up with:
  git diff --name-only | \
    xargs sed -E -i 's/(^\s*|\)\s*):[ ,]*= default/\1 = default/'

BUG=778959,778957
R=haraken@chromium.org

Change-Id: If28cdc5418f17866af63d27cf508a65118d64081
Reviewed-on: https://chromium-review.googlesource.com/835767Reviewed-by: default avatarKentaro Hara <haraken@chromium.org>
Commit-Queue: Chris Watkins <watk@chromium.org>
Cr-Commit-Position: refs/heads/master@{#525258}
parent a98b97a0
...@@ -71,7 +71,7 @@ DevToolsFrontendImpl::DevToolsFrontendImpl( ...@@ -71,7 +71,7 @@ DevToolsFrontendImpl::DevToolsFrontendImpl(
mojom::blink::DevToolsFrontendAssociatedRequest request) mojom::blink::DevToolsFrontendAssociatedRequest request)
: Supplement<LocalFrame>(frame), binding_(this, std::move(request)) {} : Supplement<LocalFrame>(frame), binding_(this, std::move(request)) {}
DevToolsFrontendImpl::~DevToolsFrontendImpl() {} DevToolsFrontendImpl::~DevToolsFrontendImpl() = default;
void DevToolsFrontendImpl::DidClearWindowObject() { void DevToolsFrontendImpl::DidClearWindowObject() {
if (host_) { if (host_) {
......
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