OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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_BROWSER_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
6 #define CHROME_BROWSER_UI_BROWSER_WINDOW_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
7 | 7 |
8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
9 #include "chrome/browser/lifetime/browser_close_manager.h" | 9 #include "chrome/browser/lifetime/browser_close_manager.h" |
10 #include "chrome/browser/signin/signin_header_helper.h" | 10 #include "chrome/browser/signin/signin_header_helper.h" |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 // Shows the translate bubble. | 223 // Shows the translate bubble. |
224 // | 224 // |
225 // |is_user_gesture| is true when the bubble is shown on the user's deliberate | 225 // |is_user_gesture| is true when the bubble is shown on the user's deliberate |
226 // action. | 226 // action. |
227 virtual void ShowTranslateBubble( | 227 virtual void ShowTranslateBubble( |
228 content::WebContents* contents, | 228 content::WebContents* contents, |
229 translate::TranslateStep step, | 229 translate::TranslateStep step, |
230 translate::TranslateErrors::Type error_type, | 230 translate::TranslateErrors::Type error_type, |
231 bool is_user_gesture) = 0; | 231 bool is_user_gesture) = 0; |
232 | 232 |
| 233 // Close the translate bubble. |
| 234 virtual void CloseTranslateBubble() = 0; |
| 235 |
233 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 236 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
234 enum OneClickSigninBubbleType { | 237 enum OneClickSigninBubbleType { |
235 ONE_CLICK_SIGNIN_BUBBLE_TYPE_BUBBLE, | 238 ONE_CLICK_SIGNIN_BUBBLE_TYPE_BUBBLE, |
236 ONE_CLICK_SIGNIN_BUBBLE_TYPE_MODAL_DIALOG, | 239 ONE_CLICK_SIGNIN_BUBBLE_TYPE_MODAL_DIALOG, |
237 ONE_CLICK_SIGNIN_BUBBLE_TYPE_SAML_MODAL_DIALOG | 240 ONE_CLICK_SIGNIN_BUBBLE_TYPE_SAML_MODAL_DIALOG |
238 }; | 241 }; |
239 | 242 |
240 // Callback type used with the ShowOneClickSigninBubble() method. If the | 243 // Callback type used with the ShowOneClickSigninBubble() method. If the |
241 // user chooses to accept the sign in, the callback is called to start the | 244 // user chooses to accept the sign in, the callback is called to start the |
242 // sync process. | 245 // sync process. |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 virtual void ExecuteExtensionCommand(const extensions::Extension* extension, | 389 virtual void ExecuteExtensionCommand(const extensions::Extension* extension, |
387 const extensions::Command& command) = 0; | 390 const extensions::Command& command) = 0; |
388 | 391 |
389 protected: | 392 protected: |
390 friend class BrowserCloseManager; | 393 friend class BrowserCloseManager; |
391 friend class BrowserView; | 394 friend class BrowserView; |
392 virtual void DestroyBrowser() = 0; | 395 virtual void DestroyBrowser() = 0; |
393 }; | 396 }; |
394 | 397 |
395 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ | 398 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
OLD | NEW |