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

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.cpp

Issue 2238423002: [DevTools] Generate all files in inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2240663003
Patch Set: Created 4 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "platform/v8_inspector/V8StringUtil.h" 5 #include "platform/v8_inspector/V8StringUtil.h"
6 6
7 #include "platform/inspector_protocol/String16.h"
8 #include "platform/v8_inspector/V8InspectorImpl.h" 7 #include "platform/v8_inspector/V8InspectorImpl.h"
9 #include "platform/v8_inspector/V8InspectorSessionImpl.h" 8 #include "platform/v8_inspector/V8InspectorSessionImpl.h"
10 #include "platform/v8_inspector/V8Regex.h" 9 #include "platform/v8_inspector/V8Regex.h"
11 10
12 namespace blink { 11 namespace blink {
13 12
14 namespace { 13 namespace {
15 14
16 String16 findMagicComment(const String16& content, const String16& name, bool mu ltiline, bool* deprecated) 15 String16 findMagicComment(const String16& content, const String16& name, bool mu ltiline, bool* deprecated)
17 { 16 {
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 return nullptr; 278 return nullptr;
280 jsonObject->setValue(toProtocolString(propertyName), std::move(prope rtyValue)); 279 jsonObject->setValue(toProtocolString(propertyName), std::move(prope rtyValue));
281 } 280 }
282 return std::move(jsonObject); 281 return std::move(jsonObject);
283 } 282 }
284 NOTREACHED(); 283 NOTREACHED();
285 return nullptr; 284 return nullptr;
286 } 285 }
287 286
288 } // namespace blink 287 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698