| 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 "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "chrome/browser/lifetime/browser_close_manager.h" | 10 #include "chrome/browser/lifetime/browser_close_manager.h" |
| 11 #include "chrome/browser/signin/chrome_signin_helper.h" | 11 #include "chrome/browser/signin/chrome_signin_helper.h" |
| 12 #include "chrome/browser/translate/chrome_translate_client.h" | 12 #include "chrome/browser/translate/chrome_translate_client.h" |
| 13 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" | 13 #include "chrome/browser/ui/bookmarks/bookmark_bar.h" |
| 14 #include "chrome/browser/ui/browser.h" | 14 #include "chrome/browser/ui/browser.h" |
| 15 #include "chrome/browser/ui/exclusive_access/exclusive_access_bubble_type.h" | 15 #include "chrome/browser/ui/exclusive_access/exclusive_access_bubble_type.h" |
| 16 #include "chrome/browser/ui/sync/one_click_signin_sync_starter.h" | 16 #include "chrome/browser/ui/sync/one_click_signin_sync_starter.h" |
| 17 #include "chrome/common/features.h" | 17 #include "chrome/common/features.h" |
| 18 #include "components/content_settings/core/common/content_settings_types.h" | 18 #include "components/content_settings/core/common/content_settings_types.h" |
| 19 #include "components/signin/core/browser/signin_header_helper.h" | 19 #include "components/signin/core/browser/signin_header_helper.h" |
| 20 #include "components/translate/core/common/translate_errors.h" | 20 #include "components/translate/core/common/translate_errors.h" |
| 21 #include "ui/base/base_window.h" | 21 #include "ui/base/base_window.h" |
| 22 #include "ui/base/window_open_disposition.h" | 22 #include "ui/base/window_open_disposition.h" |
| 23 #include "ui/gfx/native_widget_types.h" | 23 #include "ui/gfx/native_widget_types.h" |
| 24 | 24 |
| 25 class Browser; | 25 class Browser; |
| 26 class DownloadShelf; | 26 class DownloadShelf; |
| 27 class ExclusiveAccessContext; | 27 class ExclusiveAccessContext; |
| 28 class FindBar; | 28 class FindBar; |
| 29 class GlobalErrorBubbleViewBase; | |
| 30 class GURL; | 29 class GURL; |
| 31 class LocationBar; | 30 class LocationBar; |
| 32 class Profile; | 31 class Profile; |
| 33 class ProfileResetGlobalError; | |
| 34 class StatusBubble; | 32 class StatusBubble; |
| 35 class TemplateURL; | |
| 36 class ToolbarActionsBar; | 33 class ToolbarActionsBar; |
| 37 | 34 |
| 38 struct WebApplicationInfo; | 35 struct WebApplicationInfo; |
| 39 | 36 |
| 40 namespace autofill { | 37 namespace autofill { |
| 41 class SaveCardBubbleController; | 38 class SaveCardBubbleController; |
| 42 class SaveCardBubbleView; | 39 class SaveCardBubbleView; |
| 43 } | 40 } |
| 44 | 41 |
| 45 namespace content { | 42 namespace content { |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 virtual std::string GetWorkspace() const = 0; | 392 virtual std::string GetWorkspace() const = 0; |
| 396 virtual bool IsVisibleOnAllWorkspaces() const = 0; | 393 virtual bool IsVisibleOnAllWorkspaces() const = 0; |
| 397 | 394 |
| 398 protected: | 395 protected: |
| 399 friend class BrowserCloseManager; | 396 friend class BrowserCloseManager; |
| 400 friend class BrowserView; | 397 friend class BrowserView; |
| 401 virtual void DestroyBrowser() = 0; | 398 virtual void DestroyBrowser() = 0; |
| 402 }; | 399 }; |
| 403 | 400 |
| 404 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ | 401 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ |
| OLD | NEW |