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

Side by Side Diff: src/inspector/RemoteObjectId.h

Issue 2338413003: [inspector] change implementation file extension from cpp to cc (Closed)
Patch Set: string16 -> string-16 Created 4 years, 2 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
« no previous file with comments | « src/inspector/ProtocolPlatform.h ('k') | src/inspector/RemoteObjectId.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 the V8 project 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 V8_INSPECTOR_REMOTEOBJECTID_H_
6 #define V8_INSPECTOR_REMOTEOBJECTID_H_
7
8 #include "src/inspector/protocol/Forward.h"
9
10 namespace v8_inspector {
11
12 using protocol::ErrorString;
13
14 class RemoteObjectIdBase {
15 public:
16 int contextId() const { return m_injectedScriptId; }
17
18 protected:
19 RemoteObjectIdBase();
20 ~RemoteObjectIdBase() {}
21
22 std::unique_ptr<protocol::DictionaryValue> parseInjectedScriptId(
23 const String16&);
24
25 int m_injectedScriptId;
26 };
27
28 class RemoteObjectId final : public RemoteObjectIdBase {
29 public:
30 static std::unique_ptr<RemoteObjectId> parse(ErrorString*, const String16&);
31 ~RemoteObjectId() {}
32 int id() const { return m_id; }
33
34 private:
35 RemoteObjectId();
36
37 int m_id;
38 };
39
40 class RemoteCallFrameId final : public RemoteObjectIdBase {
41 public:
42 static std::unique_ptr<RemoteCallFrameId> parse(ErrorString*,
43 const String16&);
44 ~RemoteCallFrameId() {}
45
46 int frameOrdinal() const { return m_frameOrdinal; }
47
48 static String16 serialize(int injectedScriptId, int frameOrdinal);
49
50 private:
51 RemoteCallFrameId();
52
53 int m_frameOrdinal;
54 };
55
56 } // namespace v8_inspector
57
58 #endif // V8_INSPECTOR_REMOTEOBJECTID_H_
OLDNEW
« no previous file with comments | « src/inspector/ProtocolPlatform.h ('k') | src/inspector/RemoteObjectId.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698