Home | History | Annotate | Download | only in tab_contents
      1 // Copyright (c) 2010 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.
      4 
      5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_UTIL_H_
      6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_UTIL_H_
      7 #pragma once
      8 
      9 class TabContents;
     10 
     11 namespace tab_util {
     12 
     13 // Helper to find the TabContents that originated the given request. Can be
     14 // NULL if the tab has been closed or some other error occurs.
     15 // Should only be called from the UI thread, since it accesses TabContent.
     16 TabContents* GetTabContentsByID(int render_process_host_id, int routing_id);
     17 
     18 }  // namespace tab_util
     19 
     20 #endif  // CHROME_BROWSER_TAB_CONTENTS_TAB_UTIL_H_
     21