Index: chrome/browser/chrome_content_browser_client.h |
diff --git a/chrome/browser/chrome_content_browser_client.h b/chrome/browser/chrome_content_browser_client.h |
index 89f7b2231df55e6944cadf2fbd1804afd7e54e08..fa2114b098ba884030f9ccc71910f33cb9e8b5db 100644 |
--- a/chrome/browser/chrome_content_browser_client.h |
+++ b/chrome/browser/chrome_content_browser_client.h |
@@ -304,6 +304,8 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient { |
#if defined(OS_POSIX) && !defined(OS_MACOSX) |
base::ScopedFD v8_natives_fd_; |
base::ScopedFD v8_snapshot_fd_; |
+ bool natives_fd_exists() { return v8_natives_fd_ != -1; } |
+ bool snapshot_fd_exists() { return v8_snapshot_fd_ != -1; } |
#endif // OS_POSIX && !OS_MACOSX |
// Vector of additional ChromeContentBrowserClientParts. |