| Index: third_party/WebKit/Source/core/inspector/IdentifiersFactory.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/IdentifiersFactory.cpp b/third_party/WebKit/Source/core/inspector/IdentifiersFactory.cpp
|
| index f2cb7b982db5aa102552110daf00a9539febe857..d2390354dbf79ddb99f3855c92629a2473a6682c 100644
|
| --- a/third_party/WebKit/Source/core/inspector/IdentifiersFactory.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/IdentifiersFactory.cpp
|
| @@ -58,6 +58,11 @@ String IdentifiersFactory::FrameId(LocalFrame* frame) {
|
| }
|
|
|
| // static
|
| +String IdentifiersFactory::FrameIdSafe(LocalFrame* frame) {
|
| + return frame ? FrameId(frame) : "";
|
| +}
|
| +
|
| +// static
|
| LocalFrame* IdentifiersFactory::FrameById(InspectedFrames* inspected_frames,
|
| const String& frame_id) {
|
| bool ok;
|
|
|