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

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

Issue 2260233002: [DevTools] Migrate v8_inspector/public from String16 to String{View,Buffer}. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: better 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef String_h
6 #define String_h
7
8 #include "platform/PlatformExport.h"
9
10 #include <cctype>
11 #include <memory>
12 #include <stdint.h>
13
14 namespace v8_inspector {
15
16 class PLATFORM_EXPORT StringView {
17 public:
18 StringView() : m_is8Bit(true), m_length(0) { m_characters8 = nullptr; }
19 StringView(const uint8_t* characters, unsigned length) : m_is8Bit(true), m_l ength(length) { m_characters8 = characters; }
20 StringView(const uint16_t* characters, unsigned length) : m_is8Bit(false), m _length(length) { m_characters16 = characters; }
21
22 bool is8Bit() const { return m_is8Bit; }
23 unsigned length() const { return m_length; }
24 const uint8_t* characters8() const { return m_characters8; }
25 const uint16_t* characters16() const { return m_characters16; }
26
27 private:
28 bool m_is8Bit;
29 unsigned m_length;
30 union {
31 const uint8_t* m_characters8;
32 const uint16_t* m_characters16;
33 };
34 };
35
36 class PLATFORM_EXPORT StringBuffer {
37 public:
38 // This method copies contents.
39 static std::unique_ptr<StringBuffer> create(const StringView&);
40 virtual const StringView& string() = 0;
caseq 2016/08/22 17:53:02 You're not hiding StringView, right? So this could
dgozman 2016/08/22 22:35:19 I'd prefer to make this pure virtual.
41 };
42
43 } // namespace v8_inspector
44
45 #endif // String_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698