Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 521 virtual void requestStorageQuota( | 521 virtual void requestStorageQuota( |
| 522 WebKit::WebFrame* frame, | 522 WebKit::WebFrame* frame, |
| 523 WebKit::WebStorageQuotaType type, | 523 WebKit::WebStorageQuotaType type, |
| 524 unsigned long long requested_size, | 524 unsigned long long requested_size, |
| 525 WebKit::WebStorageQuotaCallbacks* callbacks); | 525 WebKit::WebStorageQuotaCallbacks* callbacks); |
| 526 | 526 |
| 527 virtual void registerIntentService( | 527 virtual void registerIntentService( |
| 528 WebKit::WebFrame* frame, | 528 WebKit::WebFrame* frame, |
| 529 const WebKit::WebIntentServiceInfo& service); | 529 const WebKit::WebIntentServiceInfo& service); |
| 530 virtual void dispatchIntent(WebKit::WebFrame* frame, | 530 virtual void dispatchIntent(WebKit::WebFrame* frame, |
| 531 const WebKit::WebIntent& intent); | 531 WebKit::WebIntentRequest* intent); |
|
James Hawkins
2012/01/12 00:11:58
Just curious, why does this need to come through a
Greg Billock
2012/01/12 18:54:45
Yeah, we're talking about that on the webkit CR. B
James Hawkins
2012/01/12 19:07:36
Up to you, was just curious.
| |
| 532 | 532 |
| 533 // WebKit::WebPageSerializerClient implementation ---------------------------- | 533 // WebKit::WebPageSerializerClient implementation ---------------------------- |
| 534 | 534 |
| 535 virtual void didSerializeDataForFrame( | 535 virtual void didSerializeDataForFrame( |
| 536 const WebKit::WebURL& frame_url, | 536 const WebKit::WebURL& frame_url, |
| 537 const WebKit::WebCString& data, | 537 const WebKit::WebCString& data, |
| 538 PageSerializationStatus status) OVERRIDE; | 538 PageSerializationStatus status) OVERRIDE; |
| 539 | 539 |
| 540 // content::RenderView implementation ---------------------------------------- | 540 // content::RenderView implementation ---------------------------------------- |
| 541 | 541 |
| (...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1219 // bunch of stuff, you should probably create a helper class and put your | 1219 // bunch of stuff, you should probably create a helper class and put your |
| 1220 // data and methods on that to avoid bloating RenderView more. You can | 1220 // data and methods on that to avoid bloating RenderView more. You can |
| 1221 // use the Observer interface to filter IPC messages and receive frame change | 1221 // use the Observer interface to filter IPC messages and receive frame change |
| 1222 // notifications. | 1222 // notifications. |
| 1223 // --------------------------------------------------------------------------- | 1223 // --------------------------------------------------------------------------- |
| 1224 | 1224 |
| 1225 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1225 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1226 }; | 1226 }; |
| 1227 | 1227 |
| 1228 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1228 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |