Searched defs:auto_close (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/base/
H A Dfile_descriptor_posix.h21 FileDescriptor() : fd(-1), auto_close(false) {}
23 FileDescriptor(int ifd, bool iauto_close) : fd(ifd), auto_close(iauto_close) {
26 FileDescriptor(File file) : fd(file.TakePlatformFile()), auto_close(true) {}
29 return (fd == other.fd && auto_close == other.auto_close);
45 bool auto_close; member in struct:base::FileDescriptor
/external/chromium_org/chrome/browser/signin/
H A Dsignin_promo.cc172 GURL GetPromoURL(Source source, bool auto_close) { argument
173 return GetPromoURL(source, auto_close, false /* is_constrained */);
176 GURL GetPromoURL(Source source, bool auto_close, bool is_constrained) { argument
177 return GetPromoURLWithContinueURL(source, auto_close, is_constrained, GURL());
181 bool auto_close,
189 if (auto_close)
216 // It is also parsed for the |auto_close| flag, which indicates that the tab
224 if (auto_close) {
250 source, true /* auto_close */,
180 GetPromoURLWithContinueURL(Source source, bool auto_close, bool is_constrained, GURL continue_url) argument
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dzoom_bubble_view.cc43 bool auto_close) {
55 // is equal to |auto_close|, the bubble can be reused and only the label text
59 zoom_bubble_->auto_close_ == auto_close) {
63 // to |auto_close|, the bubble's focus properties must change, so the
69 auto_close,
111 bool auto_close,
118 auto_close_(auto_close),
122 set_use_focusless(auto_close);
42 ShowBubble(content::WebContents* web_contents, bool auto_close) argument
108 ZoomBubbleView( views::View* anchor_view, content::WebContents* web_contents, bool auto_close, ImmersiveModeController* immersive_mode_controller, FullscreenController* fullscreen_controller) argument
/external/chromium_org/chrome/browser/ui/webui/signin/
H A Dinline_login_handler_impl.cc357 bool auto_close = signin::IsAutoCloseEnabledInURL(current_url); local
361 } else if (auto_close) {
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_file_io_host.cc81 void FileCloser(base::File auto_close) { argument

Completed in 177 milliseconds