| 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_BROWSER_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 void NavigationStateChanged(content::WebContents* source, | 552 void NavigationStateChanged(content::WebContents* source, |
| 553 content::InvalidateTypes changed_flags) override; | 553 content::InvalidateTypes changed_flags) override; |
| 554 void VisibleSSLStateChanged(const content::WebContents* source) override; | 554 void VisibleSSLStateChanged(const content::WebContents* source) override; |
| 555 void AddNewContents(content::WebContents* source, | 555 void AddNewContents(content::WebContents* source, |
| 556 content::WebContents* new_contents, | 556 content::WebContents* new_contents, |
| 557 WindowOpenDisposition disposition, | 557 WindowOpenDisposition disposition, |
| 558 const gfx::Rect& initial_rect, | 558 const gfx::Rect& initial_rect, |
| 559 bool user_gesture, | 559 bool user_gesture, |
| 560 bool* was_blocked) override; | 560 bool* was_blocked) override; |
| 561 void ActivateContents(content::WebContents* contents) override; | 561 void ActivateContents(content::WebContents* contents) override; |
| 562 void DeactivateContents(content::WebContents* contents) override; | |
| 563 void LoadingStateChanged(content::WebContents* source, | 562 void LoadingStateChanged(content::WebContents* source, |
| 564 bool to_different_document) override; | 563 bool to_different_document) override; |
| 565 void CloseContents(content::WebContents* source) override; | 564 void CloseContents(content::WebContents* source) override; |
| 566 void MoveContents(content::WebContents* source, | 565 void MoveContents(content::WebContents* source, |
| 567 const gfx::Rect& pos) override; | 566 const gfx::Rect& pos) override; |
| 568 bool IsPopupOrPanel(const content::WebContents* source) const override; | 567 bool IsPopupOrPanel(const content::WebContents* source) const override; |
| 569 void UpdateTargetURL(content::WebContents* source, const GURL& url) override; | 568 void UpdateTargetURL(content::WebContents* source, const GURL& url) override; |
| 570 void ContentsMouseEvent(content::WebContents* source, | 569 void ContentsMouseEvent(content::WebContents* source, |
| 571 const gfx::Point& location, | 570 const gfx::Point& location, |
| 572 bool motion) override; | 571 bool motion) override; |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 985 // The following factory is used for chrome update coalescing. | 984 // The following factory is used for chrome update coalescing. |
| 986 base::WeakPtrFactory<Browser> chrome_updater_factory_; | 985 base::WeakPtrFactory<Browser> chrome_updater_factory_; |
| 987 | 986 |
| 988 // The following factory is used to close the frame at a later time. | 987 // The following factory is used to close the frame at a later time. |
| 989 base::WeakPtrFactory<Browser> weak_factory_; | 988 base::WeakPtrFactory<Browser> weak_factory_; |
| 990 | 989 |
| 991 DISALLOW_COPY_AND_ASSIGN(Browser); | 990 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 992 }; | 991 }; |
| 993 | 992 |
| 994 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 993 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |