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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 void saveImageFromDataURL(const blink::WebString& data_url) override; | 361 void saveImageFromDataURL(const blink::WebString& data_url) override; |
362 void didCancelCompositionOnSelectionChange() override; | 362 void didCancelCompositionOnSelectionChange() override; |
363 bool handleCurrentKeyboardEvent() override; | 363 bool handleCurrentKeyboardEvent() override; |
364 bool runFileChooser( | 364 bool runFileChooser( |
365 const blink::WebFileChooserParams& params, | 365 const blink::WebFileChooserParams& params, |
366 blink::WebFileChooserCompletion* chooser_completion) override; | 366 blink::WebFileChooserCompletion* chooser_completion) override; |
367 void SetValidationMessageDirection(base::string16* main_text, | 367 void SetValidationMessageDirection(base::string16* main_text, |
368 blink::WebTextDirection main_text_hint, | 368 blink::WebTextDirection main_text_hint, |
369 base::string16* sub_text, | 369 base::string16* sub_text, |
370 blink::WebTextDirection sub_text_hint); | 370 blink::WebTextDirection sub_text_hint); |
371 void showValidationMessage(const blink::WebRect& anchor_in_root_view, | 371 void showValidationMessage(const blink::WebRect& anchor_in_viewport, |
372 const blink::WebString& main_text, | 372 const blink::WebString& main_text, |
373 blink::WebTextDirection main_text_hint, | 373 blink::WebTextDirection main_text_hint, |
374 const blink::WebString& sub_text, | 374 const blink::WebString& sub_text, |
375 blink::WebTextDirection hint) override; | 375 blink::WebTextDirection hint) override; |
376 void hideValidationMessage() override; | 376 void hideValidationMessage() override; |
377 void moveValidationMessage( | 377 void moveValidationMessage( |
378 const blink::WebRect& anchor_in_root_view) override; | 378 const blink::WebRect& anchor_in_viewport) override; |
379 void setStatusText(const blink::WebString& text) override; | 379 void setStatusText(const blink::WebString& text) override; |
380 void setMouseOverURL(const blink::WebURL& url) override; | 380 void setMouseOverURL(const blink::WebURL& url) override; |
381 void setKeyboardFocusURL(const blink::WebURL& url) override; | 381 void setKeyboardFocusURL(const blink::WebURL& url) override; |
382 void startDragging(blink::WebLocalFrame* frame, | 382 void startDragging(blink::WebLocalFrame* frame, |
383 const blink::WebDragData& data, | 383 const blink::WebDragData& data, |
384 blink::WebDragOperationsMask mask, | 384 blink::WebDragOperationsMask mask, |
385 const blink::WebImage& image, | 385 const blink::WebImage& image, |
386 const blink::WebPoint& imageOffset) override; | 386 const blink::WebPoint& imageOffset) override; |
387 bool acceptsLoadDrops() override; | 387 bool acceptsLoadDrops() override; |
388 void focusNext() override; | 388 void focusNext() override; |
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1031 // use the Observer interface to filter IPC messages and receive frame change | 1031 // use the Observer interface to filter IPC messages and receive frame change |
1032 // notifications. | 1032 // notifications. |
1033 // --------------------------------------------------------------------------- | 1033 // --------------------------------------------------------------------------- |
1034 | 1034 |
1035 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1035 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1036 }; | 1036 }; |
1037 | 1037 |
1038 } // namespace content | 1038 } // namespace content |
1039 | 1039 |
1040 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1040 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |