Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(293)

Side by Side Diff: content/renderer/render_view_impl.h

Issue 9186021: Update chromium code to use WebIntentRequest. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to head Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 virtual void requestStorageQuota( 538 virtual void requestStorageQuota(
539 WebKit::WebFrame* frame, 539 WebKit::WebFrame* frame,
540 WebKit::WebStorageQuotaType type, 540 WebKit::WebStorageQuotaType type,
541 unsigned long long requested_size, 541 unsigned long long requested_size,
542 WebKit::WebStorageQuotaCallbacks* callbacks); 542 WebKit::WebStorageQuotaCallbacks* callbacks);
543 543
544 virtual void registerIntentService( 544 virtual void registerIntentService(
545 WebKit::WebFrame* frame, 545 WebKit::WebFrame* frame,
546 const WebKit::WebIntentServiceInfo& service); 546 const WebKit::WebIntentServiceInfo& service);
547 virtual void dispatchIntent(WebKit::WebFrame* frame, 547 virtual void dispatchIntent(WebKit::WebFrame* frame,
548 const WebKit::WebIntentRequest& request); 548 const WebKit::WebIntentRequest& intentRequest);
549 549
550 // WebKit::WebPageSerializerClient implementation ---------------------------- 550 // WebKit::WebPageSerializerClient implementation ----------------------------
551 551
552 virtual void didSerializeDataForFrame( 552 virtual void didSerializeDataForFrame(
553 const WebKit::WebURL& frame_url, 553 const WebKit::WebURL& frame_url,
554 const WebKit::WebCString& data, 554 const WebKit::WebCString& data,
555 PageSerializationStatus status) OVERRIDE; 555 PageSerializationStatus status) OVERRIDE;
556 556
557 // content::RenderView implementation ---------------------------------------- 557 // content::RenderView implementation ----------------------------------------
558 558
(...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after
1244 // bunch of stuff, you should probably create a helper class and put your 1244 // bunch of stuff, you should probably create a helper class and put your
1245 // data and methods on that to avoid bloating RenderView more. You can 1245 // data and methods on that to avoid bloating RenderView more. You can
1246 // use the Observer interface to filter IPC messages and receive frame change 1246 // use the Observer interface to filter IPC messages and receive frame change
1247 // notifications. 1247 // notifications.
1248 // --------------------------------------------------------------------------- 1248 // ---------------------------------------------------------------------------
1249 1249
1250 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1250 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1251 }; 1251 };
1252 1252
1253 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1253 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698