| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
| 6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <queue> | 9 #include <queue> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 const GURL& link_url, | 269 const GURL& link_url, |
| 270 const GURL& src_url, | 270 const GURL& src_url, |
| 271 const GURL& page_url, | 271 const GURL& page_url, |
| 272 const GURL& frame_url, | 272 const GURL& frame_url, |
| 273 const ContextMenuMediaParams& media_params, | 273 const ContextMenuMediaParams& media_params, |
| 274 const std::wstring& selection_text, | 274 const std::wstring& selection_text, |
| 275 const std::wstring& misspelled_word, | 275 const std::wstring& misspelled_word, |
| 276 int edit_flags, | 276 int edit_flags, |
| 277 const std::string& security_info, | 277 const std::string& security_info, |
| 278 const std::string& frame_charset); | 278 const std::string& frame_charset); |
| 279 |
| 280 virtual void ShowContextMenu(WebView* webview, |
| 281 ContextNodeType node_type, |
| 282 int x, |
| 283 int y, |
| 284 const GURL& link_url, |
| 285 const GURL& src_url, |
| 286 const GURL& page_url, |
| 287 const GURL& frame_url, |
| 288 const GURL& bkg_url, |
| 289 const ContextMenuMediaParams& media_params, |
| 290 const std::wstring& selection_text, |
| 291 const std::wstring& misspelled_word, |
| 292 int edit_flags, |
| 293 const std::string& security_info, |
| 294 const std::string& frame_charset); |
| 295 |
| 279 virtual void StartDragging(WebView* webview, | 296 virtual void StartDragging(WebView* webview, |
| 280 const WebKit::WebDragData& drag_data); | 297 const WebKit::WebDragData& drag_data); |
| 281 | 298 |
| 282 virtual void TakeFocus(WebView* webview, bool reverse); | 299 virtual void TakeFocus(WebView* webview, bool reverse); |
| 283 virtual void JSOutOfMemory(); | 300 virtual void JSOutOfMemory(); |
| 284 | 301 |
| 285 virtual void NavigateBackForwardSoon(int offset); | 302 virtual void NavigateBackForwardSoon(int offset); |
| 286 virtual int GetHistoryBackListCount(); | 303 virtual int GetHistoryBackListCount(); |
| 287 virtual int GetHistoryForwardListCount(); | 304 virtual int GetHistoryForwardListCount(); |
| 288 virtual void OnNavStateChanged(WebView* webview); | 305 virtual void OnNavStateChanged(WebView* webview); |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 | 832 |
| 816 RendererPreferences renderer_preferences_; | 833 RendererPreferences renderer_preferences_; |
| 817 | 834 |
| 818 // page id for the last navigation sent to the browser. | 835 // page id for the last navigation sent to the browser. |
| 819 int32 last_top_level_navigation_page_id_; | 836 int32 last_top_level_navigation_page_id_; |
| 820 | 837 |
| 821 DISALLOW_COPY_AND_ASSIGN(RenderView); | 838 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 822 }; | 839 }; |
| 823 | 840 |
| 824 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 841 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |