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_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 // BrowserIntegration callbacks, feel free to move it elsewhere. | 210 // BrowserIntegration callbacks, feel free to move it elsewhere. |
211 virtual void OnCrashedPlugin(const FilePath& plugin_path) = 0; | 211 virtual void OnCrashedPlugin(const FilePath& plugin_path) = 0; |
212 | 212 |
213 // Notification that a worker process has crashed. | 213 // Notification that a worker process has crashed. |
214 virtual void OnCrashedWorker() = 0; | 214 virtual void OnCrashedWorker() = 0; |
215 | 215 |
216 // Notification that a request for install info has completed. | 216 // Notification that a request for install info has completed. |
217 virtual void OnDidGetApplicationInfo( | 217 virtual void OnDidGetApplicationInfo( |
218 int32 page_id, | 218 int32 page_id, |
219 const webkit_glue::WebApplicationInfo& app_info) = 0; | 219 const webkit_glue::WebApplicationInfo& app_info) = 0; |
220 | |
221 // Notification that the contents of the page has been loaded. | |
222 virtual void OnPageContents(const GURL& url, | |
223 int renderer_process_id, | |
224 int32 page_id, | |
225 const std::wstring& contents) = 0; | |
226 }; | 220 }; |
227 | 221 |
228 // Resource ------------------------------------------------------------------ | 222 // Resource ------------------------------------------------------------------ |
229 // Notifications of resource loading events. | 223 // Notifications of resource loading events. |
230 | 224 |
231 class Resource { | 225 class Resource { |
232 public: | 226 public: |
233 // The RenderView is starting a provisional load. | 227 // The RenderView is starting a provisional load. |
234 virtual void DidStartProvisionalLoadForFrame( | 228 virtual void DidStartProvisionalLoadForFrame( |
235 RenderViewHost* render_view_host, | 229 RenderViewHost* render_view_host, |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
573 virtual bool IsExternalTabContainer() const; | 567 virtual bool IsExternalTabContainer() const; |
574 | 568 |
575 // The RenderView has inserted one css file into page. | 569 // The RenderView has inserted one css file into page. |
576 virtual void DidInsertCSS() {} | 570 virtual void DidInsertCSS() {} |
577 | 571 |
578 // A different node in the page got focused. | 572 // A different node in the page got focused. |
579 virtual void FocusedNodeChanged() {} | 573 virtual void FocusedNodeChanged() {} |
580 }; | 574 }; |
581 | 575 |
582 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 576 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
OLD | NEW |