| 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 virtual void ShowUpdateChromeDialog() OVERRIDE; | 332 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 333 virtual void ShowBookmarkBubble(const GURL& url, | 333 virtual void ShowBookmarkBubble(const GURL& url, |
| 334 bool already_bookmarked) OVERRIDE; | 334 bool already_bookmarked) OVERRIDE; |
| 335 virtual void ShowBookmarkAppBubble( | 335 virtual void ShowBookmarkAppBubble( |
| 336 const WebApplicationInfo& web_app_info, | 336 const WebApplicationInfo& web_app_info, |
| 337 const std::string& extension_id) OVERRIDE; | 337 const std::string& extension_id) OVERRIDE; |
| 338 virtual void ShowBookmarkPrompt() OVERRIDE; | 338 virtual void ShowBookmarkPrompt() OVERRIDE; |
| 339 virtual void ShowTranslateBubble(content::WebContents* contents, | 339 virtual void ShowTranslateBubble(content::WebContents* contents, |
| 340 translate::TranslateStep step, | 340 translate::TranslateStep step, |
| 341 TranslateErrors::Type error_type) OVERRIDE; | 341 TranslateErrors::Type error_type) OVERRIDE; |
| 342 virtual void ShowManagePasswordsBubble( |
| 343 content::WebContents* contents) OVERRIDE; |
| 342 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 344 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
| 343 virtual void ShowOneClickSigninBubble( | 345 virtual void ShowOneClickSigninBubble( |
| 344 OneClickSigninBubbleType type, | 346 OneClickSigninBubbleType type, |
| 345 const base::string16& email, | 347 const base::string16& email, |
| 346 const base::string16& error_message, | 348 const base::string16& error_message, |
| 347 const StartSyncCallback& start_sync_callback) OVERRIDE; | 349 const StartSyncCallback& start_sync_callback) OVERRIDE; |
| 348 #endif | 350 #endif |
| 349 // TODO(beng): Not an override, move somewhere else. | 351 // TODO(beng): Not an override, move somewhere else. |
| 350 void SetDownloadShelfVisible(bool visible); | 352 void SetDownloadShelfVisible(bool visible); |
| 351 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 353 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 gfx::ScopedSysColorChangeListener color_change_listener_; | 748 gfx::ScopedSysColorChangeListener color_change_listener_; |
| 747 | 749 |
| 748 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; | 750 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; |
| 749 | 751 |
| 750 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 752 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 751 | 753 |
| 752 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 754 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 753 }; | 755 }; |
| 754 | 756 |
| 755 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 757 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |