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

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

Issue 2251343003: [DevTools] Generate separate copies of inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win compile 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 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/InspectorProtocol.h" 8 #include "platform/v8_inspector/Allocator.h"
9 #include "platform/v8_inspector/String16.h"
10
9 #include <v8.h> 11 #include <v8.h>
10 12
11 namespace v8_inspector { 13 namespace v8_inspector {
12 14
13 class V8InspectorImpl; 15 class V8InspectorImpl;
14 16
15 enum MultilineMode { 17 enum MultilineMode {
16 MultilineDisabled, 18 MultilineDisabled,
17 MultilineEnabled 19 MultilineEnabled
18 }; 20 };
19 21
20 class V8Regex { 22 class V8Regex {
21 PROTOCOL_DISALLOW_COPY(V8Regex); 23 V8_INSPECTOR_DISALLOW_COPY(V8Regex);
22 public: 24 public:
23 V8Regex(V8InspectorImpl*, const String16&, bool caseSensitive, bool multilin e = false); 25 V8Regex(V8InspectorImpl*, const String16&, bool caseSensitive, bool multilin e = false);
24 int match(const String16&, int startFrom = 0, int* matchLength = 0) const; 26 int match(const String16&, int startFrom = 0, int* matchLength = 0) const;
25 bool isValid() const { return !m_regex.IsEmpty(); } 27 bool isValid() const { return !m_regex.IsEmpty(); }
26 const String16& errorMessage() const { return m_errorMessage; } 28 const String16& errorMessage() const { return m_errorMessage; }
27 29
28 private: 30 private:
29 V8InspectorImpl* m_inspector; 31 V8InspectorImpl* m_inspector;
30 v8::Global<v8::RegExp> m_regex; 32 v8::Global<v8::RegExp> m_regex;
31 String16 m_errorMessage; 33 String16 m_errorMessage;
32 }; 34 };
33 35
34 } // namespace v8_inspector 36 } // namespace v8_inspector
35 37
36 #endif // V8Regex_h 38 #endif // V8Regex_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698