Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(572)

Side by Side Diff: chrome/renderer/render_view.h

Issue 16510: Fixes bug 1925 (context menus for text selections in... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698