OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <deque> | 9 #include <deque> |
10 #include <map> | 10 #include <map> |
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 virtual void focusPrevious(); | 427 virtual void focusPrevious(); |
428 virtual void focusedNodeChanged(const WebKit::WebNode& node); | 428 virtual void focusedNodeChanged(const WebKit::WebNode& node); |
429 virtual void navigateBackForwardSoon(int offset); | 429 virtual void navigateBackForwardSoon(int offset); |
430 virtual int historyBackListCount(); | 430 virtual int historyBackListCount(); |
431 virtual int historyForwardListCount(); | 431 virtual int historyForwardListCount(); |
432 virtual void postAccessibilityNotification( | 432 virtual void postAccessibilityNotification( |
433 const WebKit::WebAccessibilityObject& obj, | 433 const WebKit::WebAccessibilityObject& obj, |
434 WebKit::WebAccessibilityNotification notification); | 434 WebKit::WebAccessibilityNotification notification); |
435 virtual void didUpdateInspectorSetting(const WebKit::WebString& key, | 435 virtual void didUpdateInspectorSetting(const WebKit::WebString& key, |
436 const WebKit::WebString& value); | 436 const WebKit::WebString& value); |
437 virtual void queryAutofillSuggestions(const WebKit::WebNode& node, | |
438 const WebKit::WebString& name, | |
439 const WebKit::WebString& value); | |
440 virtual void removeAutofillSuggestions(const WebKit::WebString& name, | 437 virtual void removeAutofillSuggestions(const WebKit::WebString& name, |
441 const WebKit::WebString& value); | 438 const WebKit::WebString& value); |
442 virtual void didAcceptAutoFillSuggestion(const WebKit::WebNode& node, | 439 virtual void didAcceptAutoFillSuggestion(const WebKit::WebNode& node, |
443 const WebKit::WebString& value, | 440 const WebKit::WebString& value, |
444 const WebKit::WebString& label, | 441 const WebKit::WebString& label, |
445 int unique_id, | 442 int unique_id, |
446 unsigned index); | 443 unsigned index); |
447 virtual void didSelectAutoFillSuggestion(const WebKit::WebNode& node, | 444 virtual void didSelectAutoFillSuggestion(const WebKit::WebNode& node, |
448 const WebKit::WebString& value, | 445 const WebKit::WebString& value, |
449 const WebKit::WebString& label, | 446 const WebKit::WebString& label, |
(...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1402 // ADDING NEW DATA? Please see if it fits appropriately in one of the above | 1399 // ADDING NEW DATA? Please see if it fits appropriately in one of the above |
1403 // sections rather than throwing it randomly at the end. If you're adding a | 1400 // sections rather than throwing it randomly at the end. If you're adding a |
1404 // bunch of stuff, you should probably create a helper class and put your | 1401 // bunch of stuff, you should probably create a helper class and put your |
1405 // data and methods on that to avoid bloating RenderView more. | 1402 // data and methods on that to avoid bloating RenderView more. |
1406 // --------------------------------------------------------------------------- | 1403 // --------------------------------------------------------------------------- |
1407 | 1404 |
1408 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1405 DISALLOW_COPY_AND_ASSIGN(RenderView); |
1409 }; | 1406 }; |
1410 | 1407 |
1411 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1408 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |