| 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 ContextNode node, | 259 ContextNode node, |
| 260 int x, | 260 int x, |
| 261 int y, | 261 int y, |
| 262 const GURL& link_url, | 262 const GURL& link_url, |
| 263 const GURL& image_url, | 263 const GURL& image_url, |
| 264 const GURL& page_url, | 264 const GURL& page_url, |
| 265 const GURL& frame_url, | 265 const GURL& frame_url, |
| 266 const std::wstring& selection_text, | 266 const std::wstring& selection_text, |
| 267 const std::wstring& misspelled_word, | 267 const std::wstring& misspelled_word, |
| 268 int edit_flags, | 268 int edit_flags, |
| 269 const std::string& security_info); | 269 const std::string& security_info, |
| 270 const std::string& frame_charset); |
| 270 virtual void StartDragging(WebView* webview, | 271 virtual void StartDragging(WebView* webview, |
| 271 const WebKit::WebDragData& drag_data); | 272 const WebKit::WebDragData& drag_data); |
| 272 | 273 |
| 273 virtual void TakeFocus(WebView* webview, bool reverse); | 274 virtual void TakeFocus(WebView* webview, bool reverse); |
| 274 virtual void JSOutOfMemory(); | 275 virtual void JSOutOfMemory(); |
| 275 | 276 |
| 276 virtual WebHistoryItem* GetHistoryEntryAtOffset(int offset); | 277 virtual WebHistoryItem* GetHistoryEntryAtOffset(int offset); |
| 277 virtual int GetHistoryBackListCount(); | 278 virtual int GetHistoryBackListCount(); |
| 278 virtual int GetHistoryForwardListCount(); | 279 virtual int GetHistoryForwardListCount(); |
| 279 virtual void OnNavStateChanged(WebView* webview); | 280 virtual void OnNavStateChanged(WebView* webview); |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 scoped_refptr<AudioMessageFilter> audio_message_filter_; | 789 scoped_refptr<AudioMessageFilter> audio_message_filter_; |
| 789 | 790 |
| 790 // The currently selected text. This is currently only updated on Linux, where | 791 // The currently selected text. This is currently only updated on Linux, where |
| 791 // it's for the selection clipboard. | 792 // it's for the selection clipboard. |
| 792 std::string selection_text_; | 793 std::string selection_text_; |
| 793 | 794 |
| 794 DISALLOW_COPY_AND_ASSIGN(RenderView); | 795 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 795 }; | 796 }; |
| 796 | 797 |
| 797 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 798 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |