Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / tab_contents / tab_util.h
blob4814c85ebb0422ce4bf9dc752bc4a7c57127a641
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_UTIL_H_
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_UTIL_H_
8 class GURL;
9 class Profile;
11 namespace content {
12 class SiteInstance;
13 class WebContents;
16 namespace tab_util {
18 // Helper to find the WebContents that originated the given request. Can be
19 // NULL if the tab has been closed or some other error occurs.
20 // Should only be called from the UI thread, since it accesses WebContents.
21 content::WebContents* GetWebContentsByID(int render_process_id,
22 int render_view_id);
24 content::WebContents* GetWebContentsByFrameID(int render_process_id,
25 int render_frame_id);
27 // Returns a new SiteInstance for WebUI and app URLs. Returns NULL otherwise.
28 content::SiteInstance* GetSiteInstanceForNewTab(
29 Profile* profile,
30 const GURL& url);
32 } // namespace tab_util
34 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_UTIL_H_