| 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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 const blink::WebWindowFeatures& features, | 289 const blink::WebWindowFeatures& features, |
| 290 const blink::WebString& frame_name, | 290 const blink::WebString& frame_name, |
| 291 blink::WebNavigationPolicy policy, | 291 blink::WebNavigationPolicy policy, |
| 292 bool suppress_opener) override; | 292 bool suppress_opener) override; |
| 293 blink::WebWidget* CreatePopupMenu(blink::WebPopupType popup_type) override; | 293 blink::WebWidget* CreatePopupMenu(blink::WebPopupType popup_type) override; |
| 294 blink::WebStorageNamespace* CreateSessionStorageNamespace() override; | 294 blink::WebStorageNamespace* CreateSessionStorageNamespace() override; |
| 295 void PrintPage(blink::WebLocalFrame* frame) override; | 295 void PrintPage(blink::WebLocalFrame* frame) override; |
| 296 bool EnumerateChosenDirectory( | 296 bool EnumerateChosenDirectory( |
| 297 const blink::WebString& path, | 297 const blink::WebString& path, |
| 298 blink::WebFileChooserCompletion* chooser_completion) override; | 298 blink::WebFileChooserCompletion* chooser_completion) override; |
| 299 void DidCancelCompositionOnSelectionChange() override; |
| 299 void SetValidationMessageDirection(base::string16* main_text, | 300 void SetValidationMessageDirection(base::string16* main_text, |
| 300 blink::WebTextDirection main_text_hint, | 301 blink::WebTextDirection main_text_hint, |
| 301 base::string16* sub_text, | 302 base::string16* sub_text, |
| 302 blink::WebTextDirection sub_text_hint); | 303 blink::WebTextDirection sub_text_hint); |
| 303 void ShowValidationMessage(const blink::WebRect& anchor_in_viewport, | 304 void ShowValidationMessage(const blink::WebRect& anchor_in_viewport, |
| 304 const blink::WebString& main_text, | 305 const blink::WebString& main_text, |
| 305 blink::WebTextDirection main_text_hint, | 306 blink::WebTextDirection main_text_hint, |
| 306 const blink::WebString& sub_text, | 307 const blink::WebString& sub_text, |
| 307 blink::WebTextDirection hint) override; | 308 blink::WebTextDirection hint) override; |
| 308 void HideValidationMessage() override; | 309 void HideValidationMessage() override; |
| (...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 823 // --------------------------------------------------------------------------- | 824 // --------------------------------------------------------------------------- |
| 824 | 825 |
| 825 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; | 826 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; |
| 826 | 827 |
| 827 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 828 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 828 }; | 829 }; |
| 829 | 830 |
| 830 } // namespace content | 831 } // namespace content |
| 831 | 832 |
| 832 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 833 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |