OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_EXTERNAL_TAB_CONTAINER_WIN_H_ | 5 #ifndef CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ |
6 #define CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ | 6 #define CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 #include <map> | 10 #include <map> |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 WindowOpenDisposition disposition, | 110 WindowOpenDisposition disposition, |
111 PageTransition::Type transition); | 111 PageTransition::Type transition); |
112 virtual void NavigationStateChanged(const TabContents* source, | 112 virtual void NavigationStateChanged(const TabContents* source, |
113 unsigned changed_flags); | 113 unsigned changed_flags); |
114 virtual void AddNewContents(TabContents* source, | 114 virtual void AddNewContents(TabContents* source, |
115 TabContents* new_contents, | 115 TabContents* new_contents, |
116 WindowOpenDisposition disposition, | 116 WindowOpenDisposition disposition, |
117 const gfx::Rect& initial_pos, | 117 const gfx::Rect& initial_pos, |
118 bool user_gesture); | 118 bool user_gesture); |
119 virtual void ActivateContents(TabContents* contents); | 119 virtual void ActivateContents(TabContents* contents); |
120 virtual void DeactivateContents(TabContents* contents); | |
121 virtual void LoadingStateChanged(TabContents* source); | 120 virtual void LoadingStateChanged(TabContents* source); |
122 virtual void CloseContents(TabContents* source); | 121 virtual void CloseContents(TabContents* source); |
123 virtual void MoveContents(TabContents* source, const gfx::Rect& pos); | 122 virtual void MoveContents(TabContents* source, const gfx::Rect& pos); |
124 virtual void URLStarredChanged(TabContents* source, bool starred); | 123 virtual void URLStarredChanged(TabContents* source, bool starred); |
125 virtual void UpdateTargetURL(TabContents* source, const GURL& url); | 124 virtual void UpdateTargetURL(TabContents* source, const GURL& url); |
126 virtual void ContentsZoomChange(bool zoom_in); | 125 virtual void ContentsZoomChange(bool zoom_in); |
127 virtual void ToolbarSizeChanged(TabContents* source, bool is_animating); | 126 virtual void ToolbarSizeChanged(TabContents* source, bool is_animating); |
128 virtual void ForwardMessageToExternalHost(const std::string& message, | 127 virtual void ForwardMessageToExternalHost(const std::string& message, |
129 const std::string& origin, | 128 const std::string& origin, |
130 const std::string& target); | 129 const std::string& target); |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 | 325 |
327 views::View* external_tab_view_; | 326 views::View* external_tab_view_; |
328 | 327 |
329 gfx::NativeWindow notification_window_; | 328 gfx::NativeWindow notification_window_; |
330 int notification_message_; | 329 int notification_message_; |
331 | 330 |
332 DISALLOW_COPY_AND_ASSIGN(ExternalTabContainer); | 331 DISALLOW_COPY_AND_ASSIGN(ExternalTabContainer); |
333 }; | 332 }; |
334 | 333 |
335 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ | 334 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ |
OLD | NEW |