2017-07-06 22:39:37 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors.
|
|
|
|
// Portions copyright (c) 2011 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_RENDERER_RENDER_FRAME_UTIL_H_
|
|
|
|
#define CEF_LIBCEF_RENDERER_RENDER_FRAME_UTIL_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace blink {
|
2017-07-27 01:19:27 +02:00
|
|
|
class WebLocalFrame;
|
2017-07-06 22:39:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace render_frame_util {
|
|
|
|
|
2017-07-27 01:19:27 +02:00
|
|
|
int64_t GetIdentifier(blink::WebLocalFrame* frame);
|
2018-03-28 19:30:15 +02:00
|
|
|
std::string GetName(blink::WebLocalFrame* frame);
|
2017-07-06 22:39:37 +02:00
|
|
|
|
2017-07-27 01:19:27 +02:00
|
|
|
} // namespace render_frame_util
|
2017-07-06 22:39:37 +02:00
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_RENDERER_RENDER_FRAME_UTIL_H_
|