| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 class AudioMessageFilter; | 60 class AudioMessageFilter; |
| 61 class DictionaryValue; | 61 class DictionaryValue; |
| 62 class DevToolsAgent; | 62 class DevToolsAgent; |
| 63 class DevToolsClient; | 63 class DevToolsClient; |
| 64 class FilePath; | 64 class FilePath; |
| 65 class GURL; | 65 class GURL; |
| 66 class ListValue; | 66 class ListValue; |
| 67 class NavigationState; | 67 class NavigationState; |
| 68 class PrintWebViewHelper; | 68 class PrintWebViewHelper; |
| 69 class WebPluginDelegateProxy; | 69 class WebPluginDelegateProxy; |
| 70 class WebDevToolsAgentDelegate; | |
| 71 struct ContextMenuMediaParams; | 70 struct ContextMenuMediaParams; |
| 72 struct ThumbnailScore; | 71 struct ThumbnailScore; |
| 73 struct ViewMsg_ClosePage_Params; | 72 struct ViewMsg_ClosePage_Params; |
| 74 struct ViewMsg_Navigate_Params; | 73 struct ViewMsg_Navigate_Params; |
| 75 struct ViewMsg_UploadFile_Params; | 74 struct ViewMsg_UploadFile_Params; |
| 76 struct WebDropData; | 75 struct WebDropData; |
| 77 | 76 |
| 78 namespace base { | 77 namespace base { |
| 79 class WaitableEvent; | 78 class WaitableEvent; |
| 80 } | 79 } |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 // WebViewDelegate | 166 // WebViewDelegate |
| 168 virtual void LoadNavigationErrorPage( | 167 virtual void LoadNavigationErrorPage( |
| 169 WebKit::WebFrame* frame, | 168 WebKit::WebFrame* frame, |
| 170 const WebKit::WebURLRequest& failed_request, | 169 const WebKit::WebURLRequest& failed_request, |
| 171 const WebKit::WebURLError& error, | 170 const WebKit::WebURLError& error, |
| 172 const std::string& html, | 171 const std::string& html, |
| 173 bool replace); | 172 bool replace); |
| 174 virtual void OnMissingPluginStatus( | 173 virtual void OnMissingPluginStatus( |
| 175 WebPluginDelegateProxy* delegate, | 174 WebPluginDelegateProxy* delegate, |
| 176 int status); | 175 int status); |
| 177 virtual WebDevToolsAgentDelegate* GetWebDevToolsAgentDelegate(); | |
| 178 virtual void UserMetricsRecordAction(const std::wstring& action); | 176 virtual void UserMetricsRecordAction(const std::wstring& action); |
| 179 virtual void DnsPrefetch(const std::vector<std::string>& host_names); | 177 virtual void DnsPrefetch(const std::vector<std::string>& host_names); |
| 180 | 178 |
| 181 // WebKit::WebViewClient | 179 // WebKit::WebViewClient |
| 182 virtual WebView* createView(WebKit::WebFrame* creator); | 180 virtual WebView* createView(WebKit::WebFrame* creator); |
| 183 virtual WebKit::WebWidget* createPopupMenu(bool activatable); | 181 virtual WebKit::WebWidget* createPopupMenu(bool activatable); |
| 184 virtual WebKit::WebWidget* createPopupMenu( | 182 virtual WebKit::WebWidget* createPopupMenu( |
| 185 const WebKit::WebPopupMenuInfo& info); | 183 const WebKit::WebPopupMenuInfo& info); |
| 186 virtual void didAddMessageToConsole( | 184 virtual void didAddMessageToConsole( |
| 187 const WebKit::WebConsoleMessage& message, | 185 const WebKit::WebConsoleMessage& message, |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 virtual bool acceptsLoadDrops(); | 247 virtual bool acceptsLoadDrops(); |
| 250 virtual void focusNext(); | 248 virtual void focusNext(); |
| 251 virtual void focusPrevious(); | 249 virtual void focusPrevious(); |
| 252 virtual void navigateBackForwardSoon(int offset); | 250 virtual void navigateBackForwardSoon(int offset); |
| 253 virtual int historyBackListCount(); | 251 virtual int historyBackListCount(); |
| 254 virtual int historyForwardListCount(); | 252 virtual int historyForwardListCount(); |
| 255 virtual void didAddHistoryItem(); | 253 virtual void didAddHistoryItem(); |
| 256 virtual void focusAccessibilityObject( | 254 virtual void focusAccessibilityObject( |
| 257 const WebKit::WebAccessibilityObject& acc_obj); | 255 const WebKit::WebAccessibilityObject& acc_obj); |
| 258 virtual void didUpdateInspectorSettings(); | 256 virtual void didUpdateInspectorSettings(); |
| 257 virtual WebKit::WebDevToolsAgentClient* devToolsAgentClient(); |
| 259 virtual void queryAutofillSuggestions( | 258 virtual void queryAutofillSuggestions( |
| 260 const WebKit::WebNode& node, const WebKit::WebString& name, | 259 const WebKit::WebNode& node, const WebKit::WebString& name, |
| 261 const WebKit::WebString& value); | 260 const WebKit::WebString& value); |
| 262 virtual void removeAutofillSuggestions( | 261 virtual void removeAutofillSuggestions( |
| 263 const WebKit::WebString& name, const WebKit::WebString& value); | 262 const WebKit::WebString& name, const WebKit::WebString& value); |
| 264 | 263 |
| 265 virtual WebKit::WebNotificationPresenter* GetNotificationPresenter() { | 264 virtual WebKit::WebNotificationPresenter* GetNotificationPresenter() { |
| 266 return notification_provider_.get(); | 265 return notification_provider_.get(); |
| 267 } | 266 } |
| 268 | 267 |
| (...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 982 // ImageResourceFetchers schedule via DownloadImage. | 981 // ImageResourceFetchers schedule via DownloadImage. |
| 983 typedef std::set<webkit_glue::ImageResourceFetcher*> ImageResourceFetcherSet; | 982 typedef std::set<webkit_glue::ImageResourceFetcher*> ImageResourceFetcherSet; |
| 984 ImageResourceFetcherSet image_fetchers_; | 983 ImageResourceFetcherSet image_fetchers_; |
| 985 | 984 |
| 986 typedef std::map<WebView*, RenderView*> ViewMap; | 985 typedef std::map<WebView*, RenderView*> ViewMap; |
| 987 | 986 |
| 988 DISALLOW_COPY_AND_ASSIGN(RenderView); | 987 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 989 }; | 988 }; |
| 990 | 989 |
| 991 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 990 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |