| 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 const blink::WebWindowFeatures& features, | 293 const blink::WebWindowFeatures& features, |
| 294 const blink::WebString& frame_name, | 294 const blink::WebString& frame_name, |
| 295 blink::WebNavigationPolicy policy, | 295 blink::WebNavigationPolicy policy, |
| 296 bool suppress_opener) override; | 296 bool suppress_opener) override; |
| 297 blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type) override; | 297 blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type) override; |
| 298 blink::WebStorageNamespace* createSessionStorageNamespace() override; | 298 blink::WebStorageNamespace* createSessionStorageNamespace() override; |
| 299 void printPage(blink::WebLocalFrame* frame) override; | 299 void printPage(blink::WebLocalFrame* frame) override; |
| 300 bool enumerateChosenDirectory( | 300 bool enumerateChosenDirectory( |
| 301 const blink::WebString& path, | 301 const blink::WebString& path, |
| 302 blink::WebFileChooserCompletion* chooser_completion) override; | 302 blink::WebFileChooserCompletion* chooser_completion) override; |
| 303 void didCancelCompositionOnSelectionChange() override; | |
| 304 void SetValidationMessageDirection(base::string16* main_text, | 303 void SetValidationMessageDirection(base::string16* main_text, |
| 305 blink::WebTextDirection main_text_hint, | 304 blink::WebTextDirection main_text_hint, |
| 306 base::string16* sub_text, | 305 base::string16* sub_text, |
| 307 blink::WebTextDirection sub_text_hint); | 306 blink::WebTextDirection sub_text_hint); |
| 308 void showValidationMessage(const blink::WebRect& anchor_in_viewport, | 307 void showValidationMessage(const blink::WebRect& anchor_in_viewport, |
| 309 const blink::WebString& main_text, | 308 const blink::WebString& main_text, |
| 310 blink::WebTextDirection main_text_hint, | 309 blink::WebTextDirection main_text_hint, |
| 311 const blink::WebString& sub_text, | 310 const blink::WebString& sub_text, |
| 312 blink::WebTextDirection hint) override; | 311 blink::WebTextDirection hint) override; |
| 313 void hideValidationMessage() override; | 312 void hideValidationMessage() override; |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 // --------------------------------------------------------------------------- | 838 // --------------------------------------------------------------------------- |
| 840 | 839 |
| 841 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; | 840 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; |
| 842 | 841 |
| 843 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 842 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 844 }; | 843 }; |
| 845 | 844 |
| 846 } // namespace content | 845 } // namespace content |
| 847 | 846 |
| 848 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 847 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |