Chromium Code Reviews| 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 <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 371 bool suppress_opener); | 371 bool suppress_opener); |
| 372 virtual blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type); | 372 virtual blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type); |
| 373 virtual blink::WebStorageNamespace* createSessionStorageNamespace(); | 373 virtual blink::WebStorageNamespace* createSessionStorageNamespace(); |
| 374 virtual void printPage(blink::WebLocalFrame* frame); | 374 virtual void printPage(blink::WebLocalFrame* frame); |
| 375 virtual bool enumerateChosenDirectory( | 375 virtual bool enumerateChosenDirectory( |
| 376 const blink::WebString& path, | 376 const blink::WebString& path, |
| 377 blink::WebFileChooserCompletion* chooser_completion); | 377 blink::WebFileChooserCompletion* chooser_completion); |
| 378 virtual void saveImageFromDataURL(const blink::WebString& data_url); | 378 virtual void saveImageFromDataURL(const blink::WebString& data_url); |
| 379 virtual void didCancelCompositionOnSelectionChange(); | 379 virtual void didCancelCompositionOnSelectionChange(); |
| 380 virtual bool handleCurrentKeyboardEvent(); | 380 virtual bool handleCurrentKeyboardEvent(); |
| 381 virtual const char* getKeyboardDOMCodeValue(int nativeValue); | |
|
apavlov
2014/11/12 08:56:32
The style guide does not seem to honor the "get" p
Habib Virji
2014/11/24 15:13:09
Done.
| |
| 381 virtual bool runFileChooser( | 382 virtual bool runFileChooser( |
| 382 const blink::WebFileChooserParams& params, | 383 const blink::WebFileChooserParams& params, |
| 383 blink::WebFileChooserCompletion* chooser_completion); | 384 blink::WebFileChooserCompletion* chooser_completion); |
| 384 void SetValidationMessageDirection(base::string16* main_text, | 385 void SetValidationMessageDirection(base::string16* main_text, |
| 385 blink::WebTextDirection main_text_hint, | 386 blink::WebTextDirection main_text_hint, |
| 386 base::string16* sub_text, | 387 base::string16* sub_text, |
| 387 blink::WebTextDirection sub_text_hint); | 388 blink::WebTextDirection sub_text_hint); |
| 388 virtual void showValidationMessage(const blink::WebRect& anchor_in_root_view, | 389 virtual void showValidationMessage(const blink::WebRect& anchor_in_root_view, |
| 389 const blink::WebString& main_text, | 390 const blink::WebString& main_text, |
| 390 blink::WebTextDirection main_text_hint, | 391 blink::WebTextDirection main_text_hint, |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1105 // use the Observer interface to filter IPC messages and receive frame change | 1106 // use the Observer interface to filter IPC messages and receive frame change |
| 1106 // notifications. | 1107 // notifications. |
| 1107 // --------------------------------------------------------------------------- | 1108 // --------------------------------------------------------------------------- |
| 1108 | 1109 |
| 1109 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1110 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1110 }; | 1111 }; |
| 1111 | 1112 |
| 1112 } // namespace content | 1113 } // namespace content |
| 1113 | 1114 |
| 1114 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1115 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |