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

Unified Diff: third_party/WebKit/Source/core/loader/EmptyClients.h

Issue 2324033004: Fix "More than one command on the same line" presubmit errors: core/fetch,loader (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: decreasePreloadCount() Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/loader/EmptyClients.h
diff --git a/third_party/WebKit/Source/core/loader/EmptyClients.h b/third_party/WebKit/Source/core/loader/EmptyClients.h
index e1eeff8d802eaabd0592317ad2c53823ad10a375..e23c03698d7fdbcdf381ebe80621b2ebb81ab770 100644
--- a/third_party/WebKit/Source/core/loader/EmptyClients.h
+++ b/third_party/WebKit/Source/core/loader/EmptyClients.h
@@ -287,7 +287,8 @@ public:
};
class EmptySpellCheckerClient : public SpellCheckerClient {
- WTF_MAKE_NONCOPYABLE(EmptySpellCheckerClient); USING_FAST_MALLOC(EmptySpellCheckerClient);
+ WTF_MAKE_NONCOPYABLE(EmptySpellCheckerClient);
+ USING_FAST_MALLOC(EmptySpellCheckerClient);
public:
EmptySpellCheckerClient() {}
~EmptySpellCheckerClient() override {}
@@ -306,7 +307,8 @@ private:
};
class EmptyEditorClient final : public EditorClient {
- WTF_MAKE_NONCOPYABLE(EmptyEditorClient); USING_FAST_MALLOC(EmptyEditorClient);
+ WTF_MAKE_NONCOPYABLE(EmptyEditorClient);
+ USING_FAST_MALLOC(EmptyEditorClient);
public:
EmptyEditorClient() {}
~EmptyEditorClient() override {}
@@ -321,7 +323,8 @@ public:
};
class EmptyContextMenuClient final : public ContextMenuClient {
- WTF_MAKE_NONCOPYABLE(EmptyContextMenuClient); USING_FAST_MALLOC(EmptyContextMenuClient);
+ WTF_MAKE_NONCOPYABLE(EmptyContextMenuClient);
+ USING_FAST_MALLOC(EmptyContextMenuClient);
public:
EmptyContextMenuClient() {}
~EmptyContextMenuClient() override {}

Powered by Google App Engine
This is Rietveld 408576698