OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 gfx::Rect GetRootWindowResizerRect() const override; | 311 gfx::Rect GetRootWindowResizerRect() const override; |
312 void ConfirmAddSearchProvider(TemplateURL* template_url, | 312 void ConfirmAddSearchProvider(TemplateURL* template_url, |
313 Profile* profile) override; | 313 Profile* profile) override; |
314 void ShowUpdateChromeDialog() override; | 314 void ShowUpdateChromeDialog() override; |
315 void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) override; | 315 void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) override; |
316 void ShowBookmarkAppBubble( | 316 void ShowBookmarkAppBubble( |
317 const WebApplicationInfo& web_app_info, | 317 const WebApplicationInfo& web_app_info, |
318 const ShowBookmarkAppBubbleCallback& callback) override; | 318 const ShowBookmarkAppBubbleCallback& callback) override; |
319 autofill::SaveCardBubbleView* ShowSaveCreditCardBubble( | 319 autofill::SaveCardBubbleView* ShowSaveCreditCardBubble( |
320 content::WebContents* contents, | 320 content::WebContents* contents, |
321 autofill::SaveCardBubbleController* controller) override; | 321 autofill::SaveCardBubbleController* controller, |
| 322 bool is_user_gesture) override; |
322 void ShowTranslateBubble(content::WebContents* contents, | 323 void ShowTranslateBubble(content::WebContents* contents, |
323 translate::TranslateStep step, | 324 translate::TranslateStep step, |
324 translate::TranslateErrors::Type error_type, | 325 translate::TranslateErrors::Type error_type, |
325 bool is_user_gesture) override; | 326 bool is_user_gesture) override; |
326 bool IsProfileResetBubbleSupported() const override; | 327 bool IsProfileResetBubbleSupported() const override; |
327 GlobalErrorBubbleViewBase* ShowProfileResetBubble( | 328 GlobalErrorBubbleViewBase* ShowProfileResetBubble( |
328 const base::WeakPtr<ProfileResetGlobalError>& global_error) override; | 329 const base::WeakPtr<ProfileResetGlobalError>& global_error) override; |
329 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 330 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
330 void ShowOneClickSigninBubble( | 331 void ShowOneClickSigninBubble( |
331 OneClickSigninBubbleType type, | 332 OneClickSigninBubbleType type, |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
702 scoped_ptr<ImmersiveModeController> immersive_mode_controller_; | 703 scoped_ptr<ImmersiveModeController> immersive_mode_controller_; |
703 | 704 |
704 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; | 705 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; |
705 | 706 |
706 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 707 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
707 | 708 |
708 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 709 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
709 }; | 710 }; |
710 | 711 |
711 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 712 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |