| OLD | NEW | 
|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 534   virtual void requestStorageQuota( | 534   virtual void requestStorageQuota( | 
| 535       WebKit::WebFrame* frame, | 535       WebKit::WebFrame* frame, | 
| 536       WebKit::WebStorageQuotaType type, | 536       WebKit::WebStorageQuotaType type, | 
| 537       unsigned long long requested_size, | 537       unsigned long long requested_size, | 
| 538       WebKit::WebStorageQuotaCallbacks* callbacks); | 538       WebKit::WebStorageQuotaCallbacks* callbacks); | 
| 539 | 539 | 
| 540   virtual void registerIntentService( | 540   virtual void registerIntentService( | 
| 541       WebKit::WebFrame* frame, | 541       WebKit::WebFrame* frame, | 
| 542       const WebKit::WebIntentServiceInfo& service); | 542       const WebKit::WebIntentServiceInfo& service); | 
| 543   virtual void dispatchIntent(WebKit::WebFrame* frame, | 543   virtual void dispatchIntent(WebKit::WebFrame* frame, | 
| 544                               const WebKit::WebIntent& intent); | 544                               const WebKit::WebIntentRequest& intentRequest); | 
| 545 | 545 | 
| 546   // WebKit::WebPageSerializerClient implementation ---------------------------- | 546   // WebKit::WebPageSerializerClient implementation ---------------------------- | 
| 547 | 547 | 
| 548   virtual void didSerializeDataForFrame( | 548   virtual void didSerializeDataForFrame( | 
| 549       const WebKit::WebURL& frame_url, | 549       const WebKit::WebURL& frame_url, | 
| 550       const WebKit::WebCString& data, | 550       const WebKit::WebCString& data, | 
| 551       PageSerializationStatus status) OVERRIDE; | 551       PageSerializationStatus status) OVERRIDE; | 
| 552 | 552 | 
| 553   // content::RenderView implementation ---------------------------------------- | 553   // content::RenderView implementation ---------------------------------------- | 
| 554 | 554 | 
| (...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1239   // bunch of stuff, you should probably create a helper class and put your | 1239   // bunch of stuff, you should probably create a helper class and put your | 
| 1240   // data and methods on that to avoid bloating RenderView more.  You can | 1240   // data and methods on that to avoid bloating RenderView more.  You can | 
| 1241   // use the Observer interface to filter IPC messages and receive frame change | 1241   // use the Observer interface to filter IPC messages and receive frame change | 
| 1242   // notifications. | 1242   // notifications. | 
| 1243   // --------------------------------------------------------------------------- | 1243   // --------------------------------------------------------------------------- | 
| 1244 | 1244 | 
| 1245   DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1245   DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 
| 1246 }; | 1246 }; | 
| 1247 | 1247 | 
| 1248 #endif  // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1248 #endif  // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 
| OLD | NEW | 
|---|