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

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/V8Regex.h

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 #ifndef V8Regex_h 5 #ifndef V8Regex_h
6 #define V8Regex_h 6 #define V8Regex_h
7 7
8 #include "platform/inspector_protocol/Allocator.h" 8 #include "platform/inspector_protocol/InspectorProtocol.h"
9 #include "platform/inspector_protocol/String16.h"
10 #include <v8.h> 9 #include <v8.h>
11 10
12 namespace blink { 11 namespace blink {
13 12
14 class V8InspectorImpl; 13 class V8InspectorImpl;
15 14
16 enum MultilineMode { 15 enum MultilineMode {
17 MultilineDisabled, 16 MultilineDisabled,
18 MultilineEnabled 17 MultilineEnabled
19 }; 18 };
20 19
21 class V8Regex { 20 class V8Regex {
22 PROTOCOL_DISALLOW_COPY(V8Regex); 21 PROTOCOL_DISALLOW_COPY(V8Regex);
23 public: 22 public:
24 V8Regex(V8InspectorImpl*, const String16&, bool caseSensitive, bool multilin e = false); 23 V8Regex(V8InspectorImpl*, const String16&, bool caseSensitive, bool multilin e = false);
25 int match(const String16&, int startFrom = 0, int* matchLength = 0) const; 24 int match(const String16&, int startFrom = 0, int* matchLength = 0) const;
26 bool isValid() const { return !m_regex.IsEmpty(); } 25 bool isValid() const { return !m_regex.IsEmpty(); }
27 const String16& errorMessage() const { return m_errorMessage; } 26 const String16& errorMessage() const { return m_errorMessage; }
28 27
29 private: 28 private:
30 V8InspectorImpl* m_inspector; 29 V8InspectorImpl* m_inspector;
31 v8::Global<v8::RegExp> m_regex; 30 v8::Global<v8::RegExp> m_regex;
32 String16 m_errorMessage; 31 String16 m_errorMessage;
33 }; 32 };
34 33
35 } // namespace blink 34 } // namespace blink
36 35
37 #endif // V8Regex_h 36 #endif // V8Regex_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698