| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 const GURL& referrer, | 224 const GURL& referrer, |
| 225 WindowOpenDisposition disposition); | 225 WindowOpenDisposition disposition); |
| 226 virtual void DidDownloadImage(int id, | 226 virtual void DidDownloadImage(int id, |
| 227 const GURL& image_url, | 227 const GURL& image_url, |
| 228 bool errored, | 228 bool errored, |
| 229 const SkBitmap& image); | 229 const SkBitmap& image); |
| 230 virtual GURL GetAlternateErrorPageURL(const GURL& failedURL, | 230 virtual GURL GetAlternateErrorPageURL(const GURL& failedURL, |
| 231 ErrorPageType error_type); | 231 ErrorPageType error_type); |
| 232 | 232 |
| 233 virtual void ShowContextMenu(WebView* webview, | 233 virtual void ShowContextMenu(WebView* webview, |
| 234 ContextNode::Type type, | 234 ContextNode node, |
| 235 int x, | 235 int x, |
| 236 int y, | 236 int y, |
| 237 const GURL& link_url, | 237 const GURL& link_url, |
| 238 const GURL& image_url, | 238 const GURL& image_url, |
| 239 const GURL& page_url, | 239 const GURL& page_url, |
| 240 const GURL& frame_url, | 240 const GURL& frame_url, |
| 241 const std::wstring& selection_text, | 241 const std::wstring& selection_text, |
| 242 const std::wstring& misspelled_word, | 242 const std::wstring& misspelled_word, |
| 243 int edit_flags, | 243 int edit_flags, |
| 244 const std::string& security_info); | 244 const std::string& security_info); |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 730 // Time in seconds of the delay between syncing page state such as form | 730 // Time in seconds of the delay between syncing page state such as form |
| 731 // elements and scroll position. This timeout allows us to avoid spamming the | 731 // elements and scroll position. This timeout allows us to avoid spamming the |
| 732 // browser process with every little thing that changes. This normally doesn't | 732 // browser process with every little thing that changes. This normally doesn't |
| 733 // change but is overridden by tests. | 733 // change but is overridden by tests. |
| 734 int delay_seconds_for_form_state_sync_; | 734 int delay_seconds_for_form_state_sync_; |
| 735 | 735 |
| 736 DISALLOW_COPY_AND_ASSIGN(RenderView); | 736 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 737 }; | 737 }; |
| 738 | 738 |
| 739 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 739 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |