• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2019 The Chromium Embedded Framework Authors. All rights
2 // reserved. Use of this source code is governed by a BSD-style license that can
3 // be found in the LICENSE file.
4 
5 #ifndef CEF_LIBCEF_COMMON_FRAME_UTIL_H_
6 #define CEF_LIBCEF_COMMON_FRAME_UTIL_H_
7 
8 #include <stdint.h>
9 
10 namespace frame_util {
11 
12 // Returns the frame ID, which is a 64-bit combination of |render_process_id|
13 // and |render_routing_id|.
14 int64_t MakeFrameId(int32_t render_process_id, int32_t render_routing_id);
15 
16 }  // namespace frame_util
17 
18 #endif  // CEF_LIBCEF_COMMON_FRAME_UTIL_H_
19