blob: 0745cf79ea648d36c802367e0b6e5d1f0cf6306e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Copyright (c) 2006-2008 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 CHROME_BROWSER_TAB_CONTENTS_TAB_UTIL_H_
#define CHROME_BROWSER_TAB_CONTENTS_TAB_UTIL_H_
class URLRequest;
class WebContents;
namespace tab_util {
// Helper to get the IDs necessary for looking up a TabContents.
// Should only be called from the IO thread, since it accesses an URLRequest.
bool GetTabContentsID(URLRequest* request, int* render_process_host_id,
int* routing_id);
// Helper to find the WebContents that originated the given request. Can be
// NULL if the tab has been closed or some other error occurs.
// Should only be called from the UI thread, since it accesses TabContent.
WebContents* GetWebContentsByID(int render_process_host_id, int routing_id);
} // namespace tab_util
#endif // CHROME_BROWSER_TAB_CONTENTS_TAB_UTIL_H_
|