OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <deque> | 9 #include <deque> |
10 #include <map> | 10 #include <map> |
(...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 void OnAutocompleteSuggestionsReturned( | 698 void OnAutocompleteSuggestionsReturned( |
699 int query_id, | 699 int query_id, |
700 const std::vector<string16>& suggestions, | 700 const std::vector<string16>& suggestions, |
701 int default_suggestions_index); | 701 int default_suggestions_index); |
702 void OnAutoFillFormDataFilled(int query_id, | 702 void OnAutoFillFormDataFilled(int query_id, |
703 const webkit_glue::FormData& form); | 703 const webkit_glue::FormData& form); |
704 void OnAutoFillSuggestionsReturned( | 704 void OnAutoFillSuggestionsReturned( |
705 int query_id, | 705 int query_id, |
706 const std::vector<string16>& values, | 706 const std::vector<string16>& values, |
707 const std::vector<string16>& labels, | 707 const std::vector<string16>& labels, |
| 708 const std::vector<string16>& icons, |
708 const std::vector<int>& unique_ids); | 709 const std::vector<int>& unique_ids); |
709 void OnCancelDownload(int32 download_id); | 710 void OnCancelDownload(int32 download_id); |
710 void OnClearFocusedNode(); | 711 void OnClearFocusedNode(); |
711 void OnClosePage(const ViewMsg_ClosePage_Params& params); | 712 void OnClosePage(const ViewMsg_ClosePage_Params& params); |
712 void OnCopy(); | 713 void OnCopy(); |
713 void OnCopyImageAt(int x, int y); | 714 void OnCopyImageAt(int x, int y); |
714 #if defined(OS_MACOSX) | 715 #if defined(OS_MACOSX) |
715 void OnCopyToFindPboard(); | 716 void OnCopyToFindPboard(); |
716 #endif | 717 #endif |
717 void OnCut(); | 718 void OnCut(); |
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1263 // ADDING NEW DATA? Please see if it fits appropriately in one of the above | 1264 // ADDING NEW DATA? Please see if it fits appropriately in one of the above |
1264 // sections rather than throwing it randomly at the end. If you're adding a | 1265 // sections rather than throwing it randomly at the end. If you're adding a |
1265 // bunch of stuff, you should probably create a helper class and put your | 1266 // bunch of stuff, you should probably create a helper class and put your |
1266 // data and methods on that to avoid bloating RenderView more. | 1267 // data and methods on that to avoid bloating RenderView more. |
1267 // --------------------------------------------------------------------------- | 1268 // --------------------------------------------------------------------------- |
1268 | 1269 |
1269 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1270 DISALLOW_COPY_AND_ASSIGN(RenderView); |
1270 }; | 1271 }; |
1271 | 1272 |
1272 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1273 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |