OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 const blink::WebWindowFeatures& features, | 296 const blink::WebWindowFeatures& features, |
297 const blink::WebString& frame_name, | 297 const blink::WebString& frame_name, |
298 blink::WebNavigationPolicy policy, | 298 blink::WebNavigationPolicy policy, |
299 bool suppress_opener) override; | 299 bool suppress_opener) override; |
300 blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type) override; | 300 blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type) override; |
301 blink::WebStorageNamespace* createSessionStorageNamespace() override; | 301 blink::WebStorageNamespace* createSessionStorageNamespace() override; |
302 void printPage(blink::WebLocalFrame* frame) override; | 302 void printPage(blink::WebLocalFrame* frame) override; |
303 bool enumerateChosenDirectory( | 303 bool enumerateChosenDirectory( |
304 const blink::WebString& path, | 304 const blink::WebString& path, |
305 blink::WebFileChooserCompletion* chooser_completion) override; | 305 blink::WebFileChooserCompletion* chooser_completion) override; |
306 void didCancelCompositionOnSelectionChange() override; | |
307 void SetValidationMessageDirection(base::string16* main_text, | 306 void SetValidationMessageDirection(base::string16* main_text, |
308 blink::WebTextDirection main_text_hint, | 307 blink::WebTextDirection main_text_hint, |
309 base::string16* sub_text, | 308 base::string16* sub_text, |
310 blink::WebTextDirection sub_text_hint); | 309 blink::WebTextDirection sub_text_hint); |
311 void showValidationMessage(const blink::WebRect& anchor_in_viewport, | 310 void showValidationMessage(const blink::WebRect& anchor_in_viewport, |
312 const blink::WebString& main_text, | 311 const blink::WebString& main_text, |
313 blink::WebTextDirection main_text_hint, | 312 blink::WebTextDirection main_text_hint, |
314 const blink::WebString& sub_text, | 313 const blink::WebString& sub_text, |
315 blink::WebTextDirection hint) override; | 314 blink::WebTextDirection hint) override; |
316 void hideValidationMessage() override; | 315 void hideValidationMessage() override; |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
843 // use the Observer interface to filter IPC messages and receive frame change | 842 // use the Observer interface to filter IPC messages and receive frame change |
844 // notifications. | 843 // notifications. |
845 // --------------------------------------------------------------------------- | 844 // --------------------------------------------------------------------------- |
846 | 845 |
847 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 846 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
848 }; | 847 }; |
849 | 848 |
850 } // namespace content | 849 } // namespace content |
851 | 850 |
852 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 851 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |