OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 virtual bool acceptsLoadDrops(); | 250 virtual bool acceptsLoadDrops(); |
251 virtual void focusNext(); | 251 virtual void focusNext(); |
252 virtual void focusPrevious(); | 252 virtual void focusPrevious(); |
253 virtual void navigateBackForwardSoon(int offset); | 253 virtual void navigateBackForwardSoon(int offset); |
254 virtual int historyBackListCount(); | 254 virtual int historyBackListCount(); |
255 virtual int historyForwardListCount(); | 255 virtual int historyForwardListCount(); |
256 virtual void didAddHistoryItem(); | 256 virtual void didAddHistoryItem(); |
257 virtual void focusAccessibilityObject( | 257 virtual void focusAccessibilityObject( |
258 const WebKit::WebAccessibilityObject& acc_obj); | 258 const WebKit::WebAccessibilityObject& acc_obj); |
259 virtual void didUpdateInspectorSettings(); | 259 virtual void didUpdateInspectorSettings(); |
260 virtual WebKit::WebDevToolsAgentClient* devToolsAgentClient(); | |
261 virtual void queryAutofillSuggestions( | 260 virtual void queryAutofillSuggestions( |
262 const WebKit::WebNode& node, const WebKit::WebString& name, | 261 const WebKit::WebNode& node, const WebKit::WebString& name, |
263 const WebKit::WebString& value); | 262 const WebKit::WebString& value); |
264 virtual void removeAutofillSuggestions( | 263 virtual void removeAutofillSuggestions( |
265 const WebKit::WebString& name, const WebKit::WebString& value); | 264 const WebKit::WebString& name, const WebKit::WebString& value); |
266 | 265 |
267 virtual WebKit::WebNotificationPresenter* GetNotificationPresenter() { | 266 virtual WebKit::WebNotificationPresenter* GetNotificationPresenter() { |
268 return notification_provider_.get(); | 267 return notification_provider_.get(); |
269 } | 268 } |
270 | 269 |
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1008 // ImageResourceFetchers schedule via DownloadImage. | 1007 // ImageResourceFetchers schedule via DownloadImage. |
1009 typedef std::set<webkit_glue::ImageResourceFetcher*> ImageResourceFetcherSet; | 1008 typedef std::set<webkit_glue::ImageResourceFetcher*> ImageResourceFetcherSet; |
1010 ImageResourceFetcherSet image_fetchers_; | 1009 ImageResourceFetcherSet image_fetchers_; |
1011 | 1010 |
1012 typedef std::map<WebKit::WebView*, RenderView*> ViewMap; | 1011 typedef std::map<WebKit::WebView*, RenderView*> ViewMap; |
1013 | 1012 |
1014 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1013 DISALLOW_COPY_AND_ASSIGN(RenderView); |
1015 }; | 1014 }; |
1016 | 1015 |
1017 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1016 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |