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

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: Fix comments 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
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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 virtual void requestStorageQuota( 537 virtual void requestStorageQuota(
538 WebKit::WebFrame* frame, 538 WebKit::WebFrame* frame,
539 WebKit::WebStorageQuotaType type, 539 WebKit::WebStorageQuotaType type,
540 unsigned long long requested_size, 540 unsigned long long requested_size,
541 WebKit::WebStorageQuotaCallbacks* callbacks); 541 WebKit::WebStorageQuotaCallbacks* callbacks);
542 542
543 virtual void registerIntentService( 543 virtual void registerIntentService(
544 WebKit::WebFrame* frame, 544 WebKit::WebFrame* frame,
545 const WebKit::WebIntentServiceInfo& service); 545 const WebKit::WebIntentServiceInfo& service);
546 virtual void dispatchIntent(WebKit::WebFrame* frame, 546 virtual void dispatchIntent(WebKit::WebFrame* frame,
547 const WebKit::WebIntent& intent); 547 const WebKit::WebIntentRequest& intentRequest);
548 548
549 // WebKit::WebPageSerializerClient implementation ---------------------------- 549 // WebKit::WebPageSerializerClient implementation ----------------------------
550 550
551 virtual void didSerializeDataForFrame( 551 virtual void didSerializeDataForFrame(
552 const WebKit::WebURL& frame_url, 552 const WebKit::WebURL& frame_url,
553 const WebKit::WebCString& data, 553 const WebKit::WebCString& data,
554 PageSerializationStatus status) OVERRIDE; 554 PageSerializationStatus status) OVERRIDE;
555 555
556 // content::RenderView implementation ---------------------------------------- 556 // content::RenderView implementation ----------------------------------------
557 557
(...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after
1242 // bunch of stuff, you should probably create a helper class and put your 1242 // bunch of stuff, you should probably create a helper class and put your
1243 // data and methods on that to avoid bloating RenderView more. You can 1243 // data and methods on that to avoid bloating RenderView more. You can
1244 // use the Observer interface to filter IPC messages and receive frame change 1244 // use the Observer interface to filter IPC messages and receive frame change
1245 // notifications. 1245 // notifications.
1246 // --------------------------------------------------------------------------- 1246 // ---------------------------------------------------------------------------
1247 1247
1248 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1248 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1249 }; 1249 };
1250 1250
1251 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1251 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | content/renderer/render_view_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698