| 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_EXTERNAL_TAB_CONTAINER_WIN_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 content::WebContents* tab, | 169 content::WebContents* tab, |
| 170 content::WebIntentsDispatcher* intents_dispatcher) OVERRIDE; | 170 content::WebIntentsDispatcher* intents_dispatcher) OVERRIDE; |
| 171 virtual void FindReply(content::WebContents* tab, | 171 virtual void FindReply(content::WebContents* tab, |
| 172 int request_id, | 172 int request_id, |
| 173 int number_of_matches, | 173 int number_of_matches, |
| 174 const gfx::Rect& selection_rect, | 174 const gfx::Rect& selection_rect, |
| 175 int active_match_ordinal, | 175 int active_match_ordinal, |
| 176 bool final_update) OVERRIDE; | 176 bool final_update) OVERRIDE; |
| 177 virtual void RequestMediaAccessPermission( | 177 virtual void RequestMediaAccessPermission( |
| 178 content::WebContents* web_contents, | 178 content::WebContents* web_contents, |
| 179 const content::MediaStreamRequest* request, | 179 const content::MediaStreamRequest& request, |
| 180 const content::MediaResponseCallback& callback) OVERRIDE; | 180 const content::MediaResponseCallback& callback) OVERRIDE; |
| 181 virtual bool RequestPpapiBrokerPermission( | 181 virtual bool RequestPpapiBrokerPermission( |
| 182 content::WebContents* web_contents, | 182 content::WebContents* web_contents, |
| 183 const GURL& url, | 183 const GURL& url, |
| 184 const FilePath& plugin_path, | 184 const FilePath& plugin_path, |
| 185 const base::Callback<void(bool)>& callback) OVERRIDE; | 185 const base::Callback<void(bool)>& callback) OVERRIDE; |
| 186 | 186 |
| 187 void RegisterRenderViewHost(content::RenderViewHost* render_view_host); | 187 void RegisterRenderViewHost(content::RenderViewHost* render_view_host); |
| 188 void UnregisterRenderViewHost(content::RenderViewHost* render_view_host); | 188 void UnregisterRenderViewHost(content::RenderViewHost* render_view_host); |
| 189 | 189 |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 return false; | 405 return false; |
| 406 } | 406 } |
| 407 | 407 |
| 408 virtual void BeforeUnloadFired(content::WebContents* tab, bool proceed, | 408 virtual void BeforeUnloadFired(content::WebContents* tab, bool proceed, |
| 409 bool* proceed_to_fire_unload) { | 409 bool* proceed_to_fire_unload) { |
| 410 NOTREACHED(); | 410 NOTREACHED(); |
| 411 } | 411 } |
| 412 }; | 412 }; |
| 413 | 413 |
| 414 #endif // CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ | 414 #endif // CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ |
| OLD | NEW |