diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-29 23:51:41 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-29 23:51:41 +0000 |
commit | dbae6b00f7636167508c4d56e16418b7f717bc54 (patch) | |
tree | 4ad8ea27910a28ca2903c921775309fdf25ce746 /content/browser/content_browser_client.h | |
parent | f728a1eb7a4031d5e607b31f80ccd9a959d58188 (diff) | |
download | chromium_src-dbae6b00f7636167508c4d56e16418b7f717bc54.zip chromium_src-dbae6b00f7636167508c4d56e16418b7f717bc54.tar.gz chromium_src-dbae6b00f7636167508c4d56e16418b7f717bc54.tar.bz2 |
Remove the IsExternalTabContainer function from the TabContentsDelegate and RenderViewHostDelegate
interfaces as this is specifc to ChromeFrame which is a Chrome feature. This functionality has now
been moved to the ContentBrowserClient interface which is implemented by the embedder (Chrome).
The content source still has one chrome frame item which is the chrome-frame switch which lives in
content_switches.cc/.h. That will be removed in a future CL.
Fixes bug http://code.google.com/p/chromium/issues/detail?id=87686
BUG=87686
TEST=ChromeFrame should continue to work as before.
Review URL: http://codereview.chromium.org/7277060
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91055 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/content_browser_client.h')
-rw-r--r-- | content/browser/content_browser_client.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/content/browser/content_browser_client.h b/content/browser/content_browser_client.h index 0eca1d5..d32a2ee 100644 --- a/content/browser/content_browser_client.h +++ b/content/browser/content_browser_client.h @@ -211,6 +211,9 @@ class ContentBrowserClient { virtual ResourceDispatcherHost* GetResourceDispatcherHost() = 0; virtual ui::Clipboard* GetClipboard() = 0; + // Returns true if fast shutdown is possible. + virtual bool IsFastShutdownPossible() = 0; + #if defined(OS_POSIX) && !defined(OS_MACOSX) // Can return an optional fd for crash handling, otherwise returns -1. virtual int GetCrashSignalFD(const std::string& process_type) = 0; |