Commit a1612d24 authored by kozyatinskiy's avatar kozyatinskiy Committed by Commit bot

[inspector] change implementation file extension from cpp to cc

BUG=chromium:635948
R=dgozman@chromium.org,alph@chromium.org
TBR=machenbach@chromium.org

Review-Url: https://codereview.chromium.org/2338413003
Cr-Commit-Position: refs/heads/master@{#39608}
parent c216b7fa
...@@ -64,15 +64,15 @@ action("inspector_injected_script") { ...@@ -64,15 +64,15 @@ action("inspector_injected_script") {
visibility = [ ":*" ] # Only targets in this file can depend on this. visibility = [ ":*" ] # Only targets in this file can depend on this.
script = "build/xxd.py" script = "build/xxd.py"
inputs = [ inputs = [
"InjectedScriptSource.js", "injected-script-source.js",
] ]
outputs = [ outputs = [
"$target_gen_dir/InjectedScriptSource.h", "$target_gen_dir/injected-script-source.h",
] ]
args = [ args = [
"InjectedScriptSource_js", "InjectedScriptSource_js",
rebase_path("InjectedScriptSource.js", root_build_dir), rebase_path("injected-script-source.js", root_build_dir),
rebase_path("$target_gen_dir/InjectedScriptSource.h", root_build_dir), rebase_path("$target_gen_dir/injected-script-source.h", root_build_dir),
] ]
} }
...@@ -80,15 +80,15 @@ action("inspector_debugger_script") { ...@@ -80,15 +80,15 @@ action("inspector_debugger_script") {
visibility = [ ":*" ] # Only targets in this file can depend on this. visibility = [ ":*" ] # Only targets in this file can depend on this.
script = "build/xxd.py" script = "build/xxd.py"
inputs = [ inputs = [
"DebuggerScript.js", "debugger-script.js",
] ]
outputs = [ outputs = [
"$target_gen_dir/DebuggerScript.h", "$target_gen_dir/debugger-script.h",
] ]
args = [ args = [
"DebuggerScript_js", "DebuggerScript_js",
rebase_path("DebuggerScript.js", root_build_dir), rebase_path("debugger-script.js", root_build_dir),
rebase_path("$target_gen_dir/DebuggerScript.h", root_build_dir), rebase_path("$target_gen_dir/debugger-script.h", root_build_dir),
] ]
} }
...@@ -131,59 +131,59 @@ v8_source_set("inspector") { ...@@ -131,59 +131,59 @@ v8_source_set("inspector") {
sources += get_target_outputs(":inspector_injected_script") sources += get_target_outputs(":inspector_injected_script")
sources += get_target_outputs(":inspector_debugger_script") sources += get_target_outputs(":inspector_debugger_script")
sources += [ sources += [
"InjectedScript.cpp", "injected-script-native.cc",
"InjectedScript.h", "injected-script-native.h",
"InjectedScriptNative.cpp", "injected-script.cc",
"InjectedScriptNative.h", "injected-script.h",
"InspectedContext.cpp", "inspected-context.cc",
"InspectedContext.h", "inspected-context.h",
"JavaScriptCallFrame.cpp", "java-script-call-frame.cc",
"JavaScriptCallFrame.h", "java-script-call-frame.h",
"ProtocolPlatform.h", "protocol-platform.h",
"RemoteObjectId.cpp", "remote-object-id.cc",
"RemoteObjectId.h", "remote-object-id.h",
"ScriptBreakpoint.h", "script-breakpoint.h",
"SearchUtil.cpp", "search-util.cc",
"SearchUtil.h", "search-util.h",
"String16.cpp", "string-16.cc",
"String16.h", "string-16.h",
"StringUtil.cpp", "string-util.cc",
"StringUtil.h", "string-util.h",
"V8Console.cpp", "v8-console-agent-impl.cc",
"V8Console.h", "v8-console-agent-impl.h",
"V8ConsoleAgentImpl.cpp", "v8-console-message.cc",
"V8ConsoleAgentImpl.h", "v8-console-message.h",
"V8ConsoleMessage.cpp", "v8-console.cc",
"V8ConsoleMessage.h", "v8-console.h",
"V8Debugger.cpp", "v8-debugger-agent-impl.cc",
"V8Debugger.h", "v8-debugger-agent-impl.h",
"V8DebuggerAgentImpl.cpp", "v8-debugger-script.cc",
"V8DebuggerAgentImpl.h", "v8-debugger-script.h",
"V8DebuggerScript.cpp", "v8-debugger.cc",
"V8DebuggerScript.h", "v8-debugger.h",
"V8FunctionCall.cpp", "v8-function-call.cc",
"V8FunctionCall.h", "v8-function-call.h",
"V8HeapProfilerAgentImpl.cpp", "v8-heap-profiler-agent-impl.cc",
"V8HeapProfilerAgentImpl.h", "v8-heap-profiler-agent-impl.h",
"V8InjectedScriptHost.cpp", "v8-injected-script-host.cc",
"V8InjectedScriptHost.h", "v8-injected-script-host.h",
"V8InspectorImpl.cpp", "v8-inspector-impl.cc",
"V8InspectorImpl.h", "v8-inspector-impl.h",
"V8InspectorSessionImpl.cpp", "v8-inspector-session-impl.cc",
"V8InspectorSessionImpl.h", "v8-inspector-session-impl.h",
"V8InternalValueType.cpp", "v8-internal-value-type.cc",
"V8InternalValueType.h", "v8-internal-value-type.h",
"V8ProfilerAgentImpl.cpp", "v8-profiler-agent-impl.cc",
"V8ProfilerAgentImpl.h", "v8-profiler-agent-impl.h",
"V8Regex.cpp", "v8-regex.cc",
"V8Regex.h", "v8-regex.h",
"V8RuntimeAgentImpl.cpp", "v8-runtime-agent-impl.cc",
"V8RuntimeAgentImpl.h", "v8-runtime-agent-impl.h",
"V8SchemaAgentImpl.cpp", "v8-schema-agent-impl.cc",
"V8SchemaAgentImpl.h", "v8-schema-agent-impl.h",
"V8StackTraceImpl.cpp", "v8-stack-trace-impl.cc",
"V8StackTraceImpl.h", "v8-stack-trace-impl.h",
"V8ValueCopier.cpp", "v8-value-copier.cc",
"V8ValueCopier.h", "v8-value-copier.h",
] ]
} }
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/InjectedScriptNative.h" #include "src/inspector/injected-script-native.h"
namespace v8_inspector { namespace v8_inspector {
......
...@@ -28,21 +28,21 @@ ...@@ -28,21 +28,21 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "src/inspector/InjectedScript.h" #include "src/inspector/injected-script.h"
#include "src/inspector/InjectedScriptNative.h" #include "src/inspector/injected-script-native.h"
#include "src/inspector/InjectedScriptSource.h" #include "src/inspector/injected-script-source.h"
#include "src/inspector/InspectedContext.h" #include "src/inspector/inspected-context.h"
#include "src/inspector/RemoteObjectId.h"
#include "src/inspector/StringUtil.h"
#include "src/inspector/V8Console.h"
#include "src/inspector/V8FunctionCall.h"
#include "src/inspector/V8InjectedScriptHost.h"
#include "src/inspector/V8InspectorImpl.h"
#include "src/inspector/V8InspectorSessionImpl.h"
#include "src/inspector/V8StackTraceImpl.h"
#include "src/inspector/V8ValueCopier.h"
#include "src/inspector/protocol/Protocol.h" #include "src/inspector/protocol/Protocol.h"
#include "src/inspector/remote-object-id.h"
#include "src/inspector/string-util.h"
#include "src/inspector/v8-console.h"
#include "src/inspector/v8-function-call.h"
#include "src/inspector/v8-injected-script-host.h"
#include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/v8-inspector-session-impl.h"
#include "src/inspector/v8-stack-trace-impl.h"
#include "src/inspector/v8-value-copier.h"
#include "include/v8-inspector.h" #include "include/v8-inspector.h"
......
...@@ -32,12 +32,12 @@ ...@@ -32,12 +32,12 @@
#define V8_INSPECTOR_INJECTEDSCRIPT_H_ #define V8_INSPECTOR_INJECTEDSCRIPT_H_
#include "src/base/macros.h" #include "src/base/macros.h"
#include "src/inspector/InjectedScriptNative.h" #include "src/inspector/injected-script-native.h"
#include "src/inspector/InspectedContext.h" #include "src/inspector/inspected-context.h"
#include "src/inspector/V8Console.h"
#include "src/inspector/V8Debugger.h"
#include "src/inspector/protocol/Forward.h" #include "src/inspector/protocol/Forward.h"
#include "src/inspector/protocol/Runtime.h" #include "src/inspector/protocol/Runtime.h"
#include "src/inspector/v8-console.h"
#include "src/inspector/v8-debugger.h"
#include "include/v8.h" #include "include/v8.h"
......
...@@ -2,13 +2,13 @@ ...@@ -2,13 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/InspectedContext.h" #include "src/inspector/inspected-context.h"
#include "src/inspector/InjectedScript.h" #include "src/inspector/injected-script.h"
#include "src/inspector/StringUtil.h" #include "src/inspector/string-util.h"
#include "src/inspector/V8Console.h" #include "src/inspector/v8-console.h"
#include "src/inspector/V8InspectorImpl.h" #include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/V8ValueCopier.h" #include "src/inspector/v8-value-copier.h"
#include "include/v8-inspector.h" #include "include/v8-inspector.h"
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#define V8_INSPECTOR_INSPECTEDCONTEXT_H_ #define V8_INSPECTOR_INSPECTEDCONTEXT_H_
#include "src/base/macros.h" #include "src/base/macros.h"
#include "src/inspector/String16.h" #include "src/inspector/string-16.h"
#include "include/v8.h" #include "include/v8.h"
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
'python', 'python',
'build/xxd.py', 'build/xxd.py',
'InjectedScriptSource_js', 'InjectedScriptSource_js',
'InjectedScriptSource.js', 'injected-script-source.js',
'<@(_outputs)' '<@(_outputs)'
], ],
}, },
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
'python', 'python',
'build/xxd.py', 'build/xxd.py',
'DebuggerScript_js', 'DebuggerScript_js',
'DebuggerScript.js', 'debugger-script.js',
'<@(_outputs)' '<@(_outputs)'
], ],
}, },
......
...@@ -25,10 +25,10 @@ ...@@ -25,10 +25,10 @@
'<(SHARED_INTERMEDIATE_DIR)/include/inspector/Schema.h', '<(SHARED_INTERMEDIATE_DIR)/include/inspector/Schema.h',
], ],
'inspector_injected_script_source': 'InjectedScriptSource.js', 'inspector_injected_script_source': 'injected-script-source.js',
'inspector_generated_injected_script': '<(SHARED_INTERMEDIATE_DIR)/src/inspector/InjectedScriptSource.h', 'inspector_generated_injected_script': '<(SHARED_INTERMEDIATE_DIR)/src/inspector/injected-script-source.h',
'inspector_debugger_script_source': 'DebuggerScript.js', 'inspector_debugger_script_source': 'debugger-script.js',
'inspector_generated_debugger_script': '<(SHARED_INTERMEDIATE_DIR)/src/inspector/DebuggerScript.h', 'inspector_generated_debugger_script': '<(SHARED_INTERMEDIATE_DIR)/src/inspector/debugger-script.h',
'inspector_all_sources': [ 'inspector_all_sources': [
'<@(inspector_generated_sources)', '<@(inspector_generated_sources)',
...@@ -36,60 +36,60 @@ ...@@ -36,60 +36,60 @@
'<(inspector_generated_debugger_script)', '<(inspector_generated_debugger_script)',
'../../include/v8-inspector.h', '../../include/v8-inspector.h',
'../../include/v8-inspector-protocol.h', '../../include/v8-inspector-protocol.h',
'inspector/InjectedScript.cpp', 'inspector/injected-script.cc',
'inspector/InjectedScript.h', 'inspector/injected-script.h',
'inspector/InjectedScriptNative.cpp', 'inspector/injected-script-native.cc',
'inspector/InjectedScriptNative.h', 'inspector/injected-script-native.h',
'inspector/InspectedContext.cpp', 'inspector/inspected-context.cc',
'inspector/InspectedContext.h', 'inspector/inspected-context.h',
'inspector/JavaScriptCallFrame.cpp', 'inspector/java-script-call-frame.cc',
'inspector/JavaScriptCallFrame.h', 'inspector/java-script-call-frame.h',
'inspector/ProtocolPlatform.h', 'inspector/protocol-platform.h',
'inspector/RemoteObjectId.cpp', 'inspector/remote-object-id.cc',
'inspector/RemoteObjectId.h', 'inspector/remote-object-id.h',
'inspector/ScriptBreakpoint.h', 'inspector/script-breakpoint.h',
'inspector/SearchUtil.cpp', 'inspector/search-util.cc',
'inspector/SearchUtil.h', 'inspector/search-util.h',
'inspector/String16.cpp', 'inspector/string-16.cc',
'inspector/String16.h', 'inspector/string-16.h',
'inspector/StringUtil.cpp', 'inspector/string-util.cc',
'inspector/StringUtil.h', 'inspector/string-util.h',
'inspector/V8Console.cpp', 'inspector/v8-console.cc',
'inspector/V8Console.h', 'inspector/v8-console.h',
'inspector/V8ConsoleAgentImpl.cpp', 'inspector/v8-console-agent-impl.cc',
'inspector/V8ConsoleAgentImpl.h', 'inspector/v8-console-agent-impl.h',
'inspector/V8ConsoleMessage.cpp', 'inspector/v8-console-message.cc',
'inspector/V8ConsoleMessage.h', 'inspector/v8-console-message.h',
'inspector/V8Debugger.cpp', 'inspector/v8-debugger.cc',
'inspector/V8Debugger.h', 'inspector/v8-debugger.h',
'inspector/V8DebuggerAgentImpl.cpp', 'inspector/v8-debugger-agent-impl.cc',
'inspector/V8DebuggerAgentImpl.h', 'inspector/v8-debugger-agent-impl.h',
'inspector/V8DebuggerScript.cpp', 'inspector/v8-debugger-script.cc',
'inspector/V8DebuggerScript.h', 'inspector/v8-debugger-script.h',
'inspector/V8FunctionCall.cpp', 'inspector/v8-function-call.cc',
'inspector/V8FunctionCall.h', 'inspector/v8-function-call.h',
'inspector/V8HeapProfilerAgentImpl.cpp', 'inspector/v8-heap-profiler-agent-impl.cc',
'inspector/V8HeapProfilerAgentImpl.h', 'inspector/v8-heap-profiler-agent-impl.h',
'inspector/V8InjectedScriptHost.cpp', 'inspector/v8-injected-script-host.cc',
'inspector/V8InjectedScriptHost.h', 'inspector/v8-injected-script-host.h',
'inspector/V8InspectorImpl.cpp', 'inspector/v8-inspector-impl.cc',
'inspector/V8InspectorImpl.h', 'inspector/v8-inspector-impl.h',
'inspector/V8InspectorSessionImpl.cpp', 'inspector/v8-inspector-session-impl.cc',
'inspector/V8InspectorSessionImpl.h', 'inspector/v8-inspector-session-impl.h',
'inspector/V8InternalValueType.cpp', 'inspector/v8-internal-value-type.cc',
'inspector/V8InternalValueType.h', 'inspector/v8-internal-value-type.h',
'inspector/V8ProfilerAgentImpl.cpp', 'inspector/v8-profiler-agent-impl.cc',
'inspector/V8ProfilerAgentImpl.h', 'inspector/v8-profiler-agent-impl.h',
'inspector/V8Regex.cpp', 'inspector/v8-regex.cc',
'inspector/V8Regex.h', 'inspector/v8-regex.h',
'inspector/V8RuntimeAgentImpl.cpp', 'inspector/v8-runtime-agent-impl.cc',
'inspector/V8RuntimeAgentImpl.h', 'inspector/v8-runtime-agent-impl.h',
'inspector/V8SchemaAgentImpl.cpp', 'inspector/v8-schema-agent-impl.cc',
'inspector/V8SchemaAgentImpl.h', 'inspector/v8-schema-agent-impl.h',
'inspector/V8StackTraceImpl.cpp', 'inspector/v8-stack-trace-impl.cc',
'inspector/V8StackTraceImpl.h', 'inspector/v8-stack-trace-impl.h',
'inspector/V8ValueCopier.cpp', 'inspector/v8-value-copier.cc',
'inspector/V8ValueCopier.h', 'inspector/v8-value-copier.h',
] ]
} }
} }
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
"lib": { "lib": {
"package": "src/inspector/protocol", "package": "src/inspector/protocol",
"output": "protocol", "output": "protocol",
"string_header": "src/inspector/StringUtil.h", "string_header": "src/inspector/string-util.h",
"platform_header": "src/inspector/ProtocolPlatform.h" "platform_header": "src/inspector/protocol-platform.h"
} }
} }
...@@ -28,9 +28,9 @@ ...@@ -28,9 +28,9 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "src/inspector/JavaScriptCallFrame.h" #include "src/inspector/java-script-call-frame.h"
#include "src/inspector/StringUtil.h" #include "src/inspector/string-util.h"
#include "include/v8-debug.h" #include "include/v8-debug.h"
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#define V8_INSPECTOR_JAVASCRIPTCALLFRAME_H_ #define V8_INSPECTOR_JAVASCRIPTCALLFRAME_H_
#include "src/base/macros.h" #include "src/base/macros.h"
#include "src/inspector/ProtocolPlatform.h" #include "src/inspector/protocol-platform.h"
#include "include/v8.h" #include "include/v8.h"
......
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/RemoteObjectId.h" #include "src/inspector/remote-object-id.h"
#include "src/inspector/StringUtil.h"
#include "src/inspector/protocol/Protocol.h" #include "src/inspector/protocol/Protocol.h"
#include "src/inspector/string-util.h"
namespace v8_inspector { namespace v8_inspector {
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#ifndef V8_INSPECTOR_SCRIPTBREAKPOINT_H_ #ifndef V8_INSPECTOR_SCRIPTBREAKPOINT_H_
#define V8_INSPECTOR_SCRIPTBREAKPOINT_H_ #define V8_INSPECTOR_SCRIPTBREAKPOINT_H_
#include "src/inspector/String16.h" #include "src/inspector/string-16.h"
namespace v8_inspector { namespace v8_inspector {
......
...@@ -2,12 +2,12 @@ ...@@ -2,12 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/SearchUtil.h" #include "src/inspector/search-util.h"
#include "src/inspector/V8InspectorImpl.h"
#include "src/inspector/V8InspectorSessionImpl.h"
#include "src/inspector/V8Regex.h"
#include "src/inspector/protocol/Protocol.h" #include "src/inspector/protocol/Protocol.h"
#include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/v8-inspector-session-impl.h"
#include "src/inspector/v8-regex.h"
namespace v8_inspector { namespace v8_inspector {
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
#ifndef V8_INSPECTOR_SEARCHUTIL_H_ #ifndef V8_INSPECTOR_SEARCHUTIL_H_
#define V8_INSPECTOR_SEARCHUTIL_H_ #define V8_INSPECTOR_SEARCHUTIL_H_
#include "src/inspector/StringUtil.h"
#include "src/inspector/protocol/Debugger.h" #include "src/inspector/protocol/Debugger.h"
#include "src/inspector/string-util.h"
namespace v8_inspector { namespace v8_inspector {
......
...@@ -2,10 +2,9 @@ ...@@ -2,10 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/String16.h" #include "src/inspector/string-16.h"
#include "src/base/platform/platform.h" #include "src/base/platform/platform.h"
#include "src/inspector/ProtocolPlatform.h" #include "src/inspector/protocol-platform.h"
#include <algorithm> #include <algorithm>
#include <cctype> #include <cctype>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/StringUtil.h" #include "src/inspector/string-util.h"
#include "src/inspector/protocol/Protocol.h" #include "src/inspector/protocol/Protocol.h"
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#define V8_INSPECTOR_STRINGUTIL_H_ #define V8_INSPECTOR_STRINGUTIL_H_
#include "src/base/macros.h" #include "src/base/macros.h"
#include "src/inspector/String16.h" #include "src/inspector/string-16.h"
#include "include/v8-inspector.h" #include "include/v8-inspector.h"
......
...@@ -2,13 +2,13 @@ ...@@ -2,13 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8ConsoleAgentImpl.h" #include "src/inspector/v8-console-agent-impl.h"
#include "src/inspector/V8ConsoleMessage.h"
#include "src/inspector/V8InspectorImpl.h"
#include "src/inspector/V8InspectorSessionImpl.h"
#include "src/inspector/V8StackTraceImpl.h"
#include "src/inspector/protocol/Protocol.h" #include "src/inspector/protocol/Protocol.h"
#include "src/inspector/v8-console-message.h"
#include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/v8-inspector-session-impl.h"
#include "src/inspector/v8-stack-trace-impl.h"
namespace v8_inspector { namespace v8_inspector {
......
...@@ -2,16 +2,16 @@ ...@@ -2,16 +2,16 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8ConsoleMessage.h" #include "src/inspector/v8-console-message.h"
#include "src/inspector/InspectedContext.h" #include "src/inspector/inspected-context.h"
#include "src/inspector/StringUtil.h"
#include "src/inspector/V8ConsoleAgentImpl.h"
#include "src/inspector/V8InspectorImpl.h"
#include "src/inspector/V8InspectorSessionImpl.h"
#include "src/inspector/V8RuntimeAgentImpl.h"
#include "src/inspector/V8StackTraceImpl.h"
#include "src/inspector/protocol/Protocol.h" #include "src/inspector/protocol/Protocol.h"
#include "src/inspector/string-util.h"
#include "src/inspector/v8-console-agent-impl.h"
#include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/v8-inspector-session-impl.h"
#include "src/inspector/v8-runtime-agent-impl.h"
#include "src/inspector/v8-stack-trace-impl.h"
#include "include/v8-inspector.h" #include "include/v8-inspector.h"
......
...@@ -2,20 +2,20 @@ ...@@ -2,20 +2,20 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8Console.h" #include "src/inspector/v8-console.h"
#include "src/base/macros.h" #include "src/base/macros.h"
#include "src/inspector/InjectedScript.h" #include "src/inspector/injected-script.h"
#include "src/inspector/InspectedContext.h" #include "src/inspector/inspected-context.h"
#include "src/inspector/StringUtil.h" #include "src/inspector/string-util.h"
#include "src/inspector/V8ConsoleMessage.h" #include "src/inspector/v8-console-message.h"
#include "src/inspector/V8DebuggerAgentImpl.h" #include "src/inspector/v8-debugger-agent-impl.h"
#include "src/inspector/V8InspectorImpl.h" #include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/V8InspectorSessionImpl.h" #include "src/inspector/v8-inspector-session-impl.h"
#include "src/inspector/V8ProfilerAgentImpl.h" #include "src/inspector/v8-profiler-agent-impl.h"
#include "src/inspector/V8RuntimeAgentImpl.h" #include "src/inspector/v8-runtime-agent-impl.h"
#include "src/inspector/V8StackTraceImpl.h" #include "src/inspector/v8-stack-trace-impl.h"
#include "src/inspector/V8ValueCopier.h" #include "src/inspector/v8-value-copier.h"
#include "include/v8-inspector.h" #include "include/v8-inspector.h"
......
...@@ -2,23 +2,23 @@ ...@@ -2,23 +2,23 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8DebuggerAgentImpl.h" #include "src/inspector/v8-debugger-agent-impl.h"
#include "src/inspector/InjectedScript.h" #include "src/inspector/injected-script.h"
#include "src/inspector/InspectedContext.h" #include "src/inspector/inspected-context.h"
#include "src/inspector/JavaScriptCallFrame.h" #include "src/inspector/java-script-call-frame.h"
#include "src/inspector/RemoteObjectId.h"
#include "src/inspector/ScriptBreakpoint.h"
#include "src/inspector/SearchUtil.h"
#include "src/inspector/StringUtil.h"
#include "src/inspector/V8Debugger.h"
#include "src/inspector/V8DebuggerScript.h"
#include "src/inspector/V8InspectorImpl.h"
#include "src/inspector/V8InspectorSessionImpl.h"
#include "src/inspector/V8Regex.h"
#include "src/inspector/V8RuntimeAgentImpl.h"
#include "src/inspector/V8StackTraceImpl.h"
#include "src/inspector/protocol/Protocol.h" #include "src/inspector/protocol/Protocol.h"
#include "src/inspector/remote-object-id.h"
#include "src/inspector/script-breakpoint.h"
#include "src/inspector/search-util.h"
#include "src/inspector/string-util.h"
#include "src/inspector/v8-debugger-script.h"
#include "src/inspector/v8-debugger.h"
#include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/v8-inspector-session-impl.h"
#include "src/inspector/v8-regex.h"
#include "src/inspector/v8-runtime-agent-impl.h"
#include "src/inspector/v8-stack-trace-impl.h"
#include "include/v8-inspector.h" #include "include/v8-inspector.h"
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#define V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_ #define V8_INSPECTOR_V8DEBUGGERAGENTIMPL_H_
#include "src/base/macros.h" #include "src/base/macros.h"
#include "src/inspector/JavaScriptCallFrame.h" #include "src/inspector/java-script-call-frame.h"
#include "src/inspector/protocol/Debugger.h" #include "src/inspector/protocol/Debugger.h"
#include "src/inspector/protocol/Forward.h" #include "src/inspector/protocol/Forward.h"
......
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8DebuggerScript.h" #include "src/inspector/v8-debugger-script.h"
#include "src/inspector/ProtocolPlatform.h" #include "src/inspector/protocol-platform.h"
#include "src/inspector/StringUtil.h" #include "src/inspector/string-util.h"
namespace v8_inspector { namespace v8_inspector {
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#define V8_INSPECTOR_V8DEBUGGERSCRIPT_H_ #define V8_INSPECTOR_V8DEBUGGERSCRIPT_H_
#include "src/base/macros.h" #include "src/base/macros.h"
#include "src/inspector/String16.h" #include "src/inspector/string-16.h"
#include "include/v8.h" #include "include/v8.h"
......
...@@ -2,17 +2,17 @@ ...@@ -2,17 +2,17 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8Debugger.h" #include "src/inspector/v8-debugger.h"
#include "src/inspector/DebuggerScript.h" #include "src/inspector/debugger-script.h"
#include "src/inspector/ScriptBreakpoint.h"
#include "src/inspector/StringUtil.h"
#include "src/inspector/V8DebuggerAgentImpl.h"
#include "src/inspector/V8InspectorImpl.h"
#include "src/inspector/V8InternalValueType.h"
#include "src/inspector/V8StackTraceImpl.h"
#include "src/inspector/V8ValueCopier.h"
#include "src/inspector/protocol/Protocol.h" #include "src/inspector/protocol/Protocol.h"
#include "src/inspector/script-breakpoint.h"
#include "src/inspector/string-util.h"
#include "src/inspector/v8-debugger-agent-impl.h"
#include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/v8-internal-value-type.h"
#include "src/inspector/v8-stack-trace-impl.h"
#include "src/inspector/v8-value-copier.h"
namespace v8_inspector { namespace v8_inspector {
......
...@@ -6,10 +6,10 @@ ...@@ -6,10 +6,10 @@
#define V8_INSPECTOR_V8DEBUGGER_H_ #define V8_INSPECTOR_V8DEBUGGER_H_
#include "src/base/macros.h" #include "src/base/macros.h"
#include "src/inspector/JavaScriptCallFrame.h" #include "src/inspector/java-script-call-frame.h"
#include "src/inspector/V8DebuggerScript.h"
#include "src/inspector/protocol/Forward.h" #include "src/inspector/protocol/Forward.h"
#include "src/inspector/protocol/Runtime.h" #include "src/inspector/protocol/Runtime.h"
#include "src/inspector/v8-debugger-script.h"
#include "include/v8-debug.h" #include "include/v8-debug.h"
#include "include/v8-inspector.h" #include "include/v8-inspector.h"
......
...@@ -28,11 +28,11 @@ ...@@ -28,11 +28,11 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "src/inspector/V8FunctionCall.h" #include "src/inspector/v8-function-call.h"
#include "src/inspector/StringUtil.h" #include "src/inspector/string-util.h"
#include "src/inspector/V8Debugger.h" #include "src/inspector/v8-debugger.h"
#include "src/inspector/V8InspectorImpl.h" #include "src/inspector/v8-inspector-impl.h"
#include "include/v8-inspector.h" #include "include/v8-inspector.h"
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#ifndef V8_INSPECTOR_V8FUNCTIONCALL_H_ #ifndef V8_INSPECTOR_V8FUNCTIONCALL_H_
#define V8_INSPECTOR_V8FUNCTIONCALL_H_ #define V8_INSPECTOR_V8FUNCTIONCALL_H_
#include "src/inspector/String16.h" #include "src/inspector/string-16.h"
#include "include/v8.h" #include "include/v8.h"
......
...@@ -2,14 +2,14 @@ ...@@ -2,14 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8HeapProfilerAgentImpl.h" #include "src/inspector/v8-heap-profiler-agent-impl.h"
#include "src/inspector/InjectedScript.h" #include "src/inspector/injected-script.h"
#include "src/inspector/StringUtil.h"
#include "src/inspector/V8Debugger.h"
#include "src/inspector/V8InspectorImpl.h"
#include "src/inspector/V8InspectorSessionImpl.h"
#include "src/inspector/protocol/Protocol.h" #include "src/inspector/protocol/Protocol.h"
#include "src/inspector/string-util.h"
#include "src/inspector/v8-debugger.h"
#include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/v8-inspector-session-impl.h"
#include "include/v8-inspector.h" #include "include/v8-inspector.h"
#include "include/v8-profiler.h" #include "include/v8-profiler.h"
......
...@@ -2,15 +2,15 @@ ...@@ -2,15 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8InjectedScriptHost.h" #include "src/inspector/v8-injected-script-host.h"
#include "src/base/macros.h" #include "src/base/macros.h"
#include "src/inspector/InjectedScriptNative.h" #include "src/inspector/injected-script-native.h"
#include "src/inspector/StringUtil.h" #include "src/inspector/string-util.h"
#include "src/inspector/V8Debugger.h" #include "src/inspector/v8-debugger.h"
#include "src/inspector/V8InspectorImpl.h" #include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/V8InternalValueType.h" #include "src/inspector/v8-internal-value-type.h"
#include "src/inspector/V8ValueCopier.h" #include "src/inspector/v8-value-copier.h"
#include "include/v8-inspector.h" #include "include/v8-inspector.h"
......
...@@ -28,19 +28,18 @@ ...@@ -28,19 +28,18 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "src/inspector/V8InspectorImpl.h" #include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/InspectedContext.h" #include "src/inspector/inspected-context.h"
#include "src/inspector/StringUtil.h" #include "src/inspector/string-util.h"
#include "src/inspector/V8ConsoleAgentImpl.h" #include "src/inspector/v8-console-agent-impl.h"
#include "src/inspector/V8ConsoleMessage.h" #include "src/inspector/v8-console-message.h"
#include "src/inspector/V8Debugger.h" #include "src/inspector/v8-debugger-agent-impl.h"
#include "src/inspector/V8DebuggerAgentImpl.h" #include "src/inspector/v8-debugger.h"
#include "src/inspector/V8InspectorSessionImpl.h" #include "src/inspector/v8-inspector-session-impl.h"
#include "src/inspector/V8ProfilerAgentImpl.h" #include "src/inspector/v8-profiler-agent-impl.h"
#include "src/inspector/V8RuntimeAgentImpl.h" #include "src/inspector/v8-runtime-agent-impl.h"
#include "src/inspector/V8StackTraceImpl.h" #include "src/inspector/v8-stack-trace-impl.h"
#include "src/inspector/protocol/Protocol.h"
namespace v8_inspector { namespace v8_inspector {
......
...@@ -2,22 +2,22 @@ ...@@ -2,22 +2,22 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8InspectorSessionImpl.h" #include "src/inspector/v8-inspector-session-impl.h"
#include "src/inspector/InjectedScript.h" #include "src/inspector/injected-script.h"
#include "src/inspector/InspectedContext.h" #include "src/inspector/inspected-context.h"
#include "src/inspector/RemoteObjectId.h"
#include "src/inspector/SearchUtil.h"
#include "src/inspector/StringUtil.h"
#include "src/inspector/V8ConsoleAgentImpl.h"
#include "src/inspector/V8Debugger.h"
#include "src/inspector/V8DebuggerAgentImpl.h"
#include "src/inspector/V8HeapProfilerAgentImpl.h"
#include "src/inspector/V8InspectorImpl.h"
#include "src/inspector/V8ProfilerAgentImpl.h"
#include "src/inspector/V8RuntimeAgentImpl.h"
#include "src/inspector/V8SchemaAgentImpl.h"
#include "src/inspector/protocol/Protocol.h" #include "src/inspector/protocol/Protocol.h"
#include "src/inspector/remote-object-id.h"
#include "src/inspector/search-util.h"
#include "src/inspector/string-util.h"
#include "src/inspector/v8-console-agent-impl.h"
#include "src/inspector/v8-debugger-agent-impl.h"
#include "src/inspector/v8-debugger.h"
#include "src/inspector/v8-heap-profiler-agent-impl.h"
#include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/v8-profiler-agent-impl.h"
#include "src/inspector/v8-runtime-agent-impl.h"
#include "src/inspector/v8-schema-agent-impl.h"
namespace v8_inspector { namespace v8_inspector {
......
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8InternalValueType.h" #include "src/inspector/v8-internal-value-type.h"
#include "src/inspector/ProtocolPlatform.h" #include "src/inspector/protocol-platform.h"
#include "src/inspector/StringUtil.h" #include "src/inspector/string-util.h"
namespace v8_inspector { namespace v8_inspector {
......
...@@ -2,15 +2,15 @@ ...@@ -2,15 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8ProfilerAgentImpl.h" #include "src/inspector/v8-profiler-agent-impl.h"
#include "src/base/atomicops.h" #include "src/base/atomicops.h"
#include "src/inspector/StringUtil.h"
#include "src/inspector/V8Debugger.h"
#include "src/inspector/V8InspectorImpl.h"
#include "src/inspector/V8InspectorSessionImpl.h"
#include "src/inspector/V8StackTraceImpl.h"
#include "src/inspector/protocol/Protocol.h" #include "src/inspector/protocol/Protocol.h"
#include "src/inspector/string-util.h"
#include "src/inspector/v8-debugger.h"
#include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/v8-inspector-session-impl.h"
#include "src/inspector/v8-stack-trace-impl.h"
#include "include/v8-profiler.h" #include "include/v8-profiler.h"
......
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8Regex.h" #include "src/inspector/v8-regex.h"
#include "src/inspector/StringUtil.h" #include "src/inspector/string-util.h"
#include "src/inspector/V8InspectorImpl.h" #include "src/inspector/v8-inspector-impl.h"
#include "include/v8-inspector.h" #include "include/v8-inspector.h"
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#define V8_INSPECTOR_V8REGEX_H_ #define V8_INSPECTOR_V8REGEX_H_
#include "src/base/macros.h" #include "src/base/macros.h"
#include "src/inspector/String16.h" #include "src/inspector/string-16.h"
#include "include/v8.h" #include "include/v8.h"
......
...@@ -28,19 +28,19 @@ ...@@ -28,19 +28,19 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "src/inspector/V8RuntimeAgentImpl.h" #include "src/inspector/v8-runtime-agent-impl.h"
#include "src/inspector/InjectedScript.h" #include "src/inspector/injected-script.h"
#include "src/inspector/InspectedContext.h" #include "src/inspector/inspected-context.h"
#include "src/inspector/RemoteObjectId.h"
#include "src/inspector/StringUtil.h"
#include "src/inspector/V8ConsoleMessage.h"
#include "src/inspector/V8Debugger.h"
#include "src/inspector/V8DebuggerAgentImpl.h"
#include "src/inspector/V8InspectorImpl.h"
#include "src/inspector/V8InspectorSessionImpl.h"
#include "src/inspector/V8StackTraceImpl.h"
#include "src/inspector/protocol/Protocol.h" #include "src/inspector/protocol/Protocol.h"
#include "src/inspector/remote-object-id.h"
#include "src/inspector/string-util.h"
#include "src/inspector/v8-console-message.h"
#include "src/inspector/v8-debugger-agent-impl.h"
#include "src/inspector/v8-debugger.h"
#include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/v8-inspector-session-impl.h"
#include "src/inspector/v8-stack-trace-impl.h"
#include "include/v8-inspector.h" #include "include/v8-inspector.h"
......
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8SchemaAgentImpl.h" #include "src/inspector/v8-schema-agent-impl.h"
#include "src/inspector/V8InspectorSessionImpl.h"
#include "src/inspector/protocol/Protocol.h" #include "src/inspector/protocol/Protocol.h"
#include "src/inspector/v8-inspector-session-impl.h"
namespace v8_inspector { namespace v8_inspector {
......
...@@ -2,13 +2,12 @@ ...@@ -2,13 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8StackTraceImpl.h" #include "src/inspector/v8-stack-trace-impl.h"
#include "src/inspector/StringUtil.h" #include "src/inspector/string-util.h"
#include "src/inspector/V8Debugger.h" #include "src/inspector/v8-debugger.h"
#include "src/inspector/V8InspectorImpl.h" #include "src/inspector/v8-inspector-impl.h"
#include "src/inspector/V8ProfilerAgentImpl.h" #include "src/inspector/v8-profiler-agent-impl.h"
#include "src/inspector/protocol/Protocol.h"
#include "include/v8-debug.h" #include "include/v8-debug.h"
#include "include/v8-profiler.h" #include "include/v8-profiler.h"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/inspector/V8ValueCopier.h" #include "src/inspector/v8-value-copier.h"
namespace v8_inspector { namespace v8_inspector {
......
...@@ -300,15 +300,15 @@ class SourceProcessor(SourceFileProcessor): ...@@ -300,15 +300,15 @@ class SourceProcessor(SourceFileProcessor):
'corrections.js', 'corrections.js',
'crypto.js', 'crypto.js',
'daemon.py', 'daemon.py',
'DebuggerScript.js', 'debugger-script.js',
'earley-boyer.js', 'earley-boyer.js',
'fannkuch.js', 'fannkuch.js',
'fasta.js', 'fasta.js',
'InjectedScript.cpp', 'injected-script.cc',
'InjectedScript.h', 'injected-script.h',
'InjectedScriptSource.js', 'injected-script-source.js',
'JavaScriptCallFrame.cpp', 'java-script-call-frame.cc',
'JavaScriptCallFrame.h', 'java-script-call-frame.h',
'jsmin.py', 'jsmin.py',
'libraries.cc', 'libraries.cc',
'libraries-empty.cc', 'libraries-empty.cc',
...@@ -319,18 +319,18 @@ class SourceProcessor(SourceFileProcessor): ...@@ -319,18 +319,18 @@ class SourceProcessor(SourceFileProcessor):
'raytrace.js', 'raytrace.js',
'regexp-pcre.js', 'regexp-pcre.js',
'rjsmin.py', 'rjsmin.py',
'ScriptBreakpoint.h', 'script-breakpoint.h',
'sqlite.js', 'sqlite.js',
'sqlite-change-heap.js', 'sqlite-change-heap.js',
'sqlite-pointer-masking.js', 'sqlite-pointer-masking.js',
'sqlite-safe-heap.js', 'sqlite-safe-heap.js',
'V8DebuggerScript.h', 'v8-debugger-script.h',
'V8FunctionCall.cpp', 'v8-function-call.cc',
'V8FunctionCall.h', 'v8-function-call.h',
'V8InspectorImpl.cpp', 'v8-inspector-impl.cc',
'V8InspectorImpl.h', 'v8-inspector-impl.h',
'V8RuntimeAgentImpl.cpp', 'v8-runtime-agent-impl.cc',
'V8RuntimeAgentImpl.h', 'v8-runtime-agent-impl.h',
'gnuplot-4.6.3-emscripten.js', 'gnuplot-4.6.3-emscripten.js',
'zlib.js'] 'zlib.js']
IGNORE_TABS = IGNORE_COPYRIGHTS + ['unicode-test.js', 'html-comments.js'] IGNORE_TABS = IGNORE_COPYRIGHTS + ['unicode-test.js', 'html-comments.js']
......
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