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

Unified Diff: third_party/WebKit/Source/bindings/scripts/generate_init_partial_interfaces.py

Issue 2698623004: [Style] Update style of initPartialInterfacesInModules.cpp (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/scripts/generate_init_partial_interfaces.py
diff --git a/third_party/WebKit/Source/bindings/scripts/generate_init_partial_interfaces.py b/third_party/WebKit/Source/bindings/scripts/generate_init_partial_interfaces.py
index 2ea53ece16deff8ab71ce9ece094d9f975d1207f..ab5bbe6336fef07a523004816f2d3b4fbb558e82 100755
--- a/third_party/WebKit/Source/bindings/scripts/generate_init_partial_interfaces.py
+++ b/third_party/WebKit/Source/bindings/scripts/generate_init_partial_interfaces.py
@@ -22,7 +22,6 @@ from utilities import write_file
_COPYRIGHT = """// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-
"""
_INIT_PARTIAL_INTERFACE = """%s
@@ -30,8 +29,7 @@ _INIT_PARTIAL_INTERFACE = """%s
namespace blink {
-void initPartialInterfacesInModules()
-{
+void initPartialInterfacesInModules() {
%s
}
@@ -93,7 +91,7 @@ def main():
includes = ['#include "bindings/modules/v8/%s.h"' % interface_name
for interface_name in interface_names]
- initialize_calls = [' %s::initialize();' % interface_name
+ initialize_calls = [' %s::initialize();' % interface_name
for interface_name in interface_names]
content = _INIT_PARTIAL_INTERFACE % (
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698