| Index: chrome/renderer/render_view.h
|
| diff --git a/chrome/renderer/render_view.h b/chrome/renderer/render_view.h
|
| index 92a3577f909f5f2fd29e321d360784b3eb25139c..314224d1db28d8603f726f18216625037169f353 100644
|
| --- a/chrome/renderer/render_view.h
|
| +++ b/chrome/renderer/render_view.h
|
| @@ -114,6 +114,7 @@ class PhishingClassifierDelegate;
|
| }
|
|
|
| namespace webkit_glue {
|
| +struct CustomContextMenuContext;
|
| class ImageResourceFetcher;
|
| struct FileUploadData;
|
| struct FormData;
|
| @@ -826,7 +827,8 @@ class RenderView : public RenderWidget,
|
| const PP_Flash_NetAddress& local_addr,
|
| const PP_Flash_NetAddress& remote_addr);
|
| #endif
|
| - void OnContextMenuClosed();
|
| + void OnContextMenuClosed(
|
| + const webkit_glue::CustomContextMenuContext& custom_context);
|
| void OnCopy();
|
| void OnCopyImageAt(int x, int y);
|
| #if defined(OS_MACOSX)
|
| @@ -838,7 +840,9 @@ class RenderView : public RenderWidget,
|
| void OnCSSInsertRequest(const std::wstring& frame_xpath,
|
| const std::string& css,
|
| const std::string& id);
|
| - void OnCustomContextMenuAction(unsigned action);
|
| + void OnCustomContextMenuAction(
|
| + const webkit_glue::CustomContextMenuContext& custom_context,
|
| + unsigned action);
|
| void OnDelete();
|
| void OnDeterminePageLanguage();
|
| void OnDisableScrollbarsForSmallWindows(
|
|
|