1 // Copyright (c) 2012 The Chromium Embedded Framework Authors. 2 // Portions copyright (c) 2011 The Chromium Authors. All rights reserved. 3 // Use of this source code is governed by a BSD-style license that can be 4 // found in the LICENSE file. 5 6 #ifndef CEF_LIBCEF_RENDERER_RENDER_FRAME_UTIL_H_ 7 #define CEF_LIBCEF_RENDERER_RENDER_FRAME_UTIL_H_ 8 9 #include <stdint.h> 10 11 #include <string> 12 13 namespace blink { 14 class WebLocalFrame; 15 } 16 17 namespace render_frame_util { 18 19 int64_t GetIdentifier(blink::WebLocalFrame* frame); 20 std::string GetName(blink::WebLocalFrame* frame); 21 22 } // namespace render_frame_util 23 24 #endif // CEF_LIBCEF_RENDERER_RENDER_FRAME_UTIL_H_ 25