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

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

Issue 1102353009: WIP Durable storage, chrome side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ToT Created 5 years, 7 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
« no previous file with comments | « content/child/quota_dispatcher.cc ('k') | content/renderer/render_frame_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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 virtual void reportFindInPageMatchCount(int request_id, 484 virtual void reportFindInPageMatchCount(int request_id,
485 int count, 485 int count,
486 bool final_update); 486 bool final_update);
487 virtual void reportFindInPageSelection(int request_id, 487 virtual void reportFindInPageSelection(int request_id,
488 int active_match_ordinal, 488 int active_match_ordinal,
489 const blink::WebRect& sel); 489 const blink::WebRect& sel);
490 virtual void requestStorageQuota(blink::WebLocalFrame* frame, 490 virtual void requestStorageQuota(blink::WebLocalFrame* frame,
491 blink::WebStorageQuotaType type, 491 blink::WebStorageQuotaType type,
492 unsigned long long requested_size, 492 unsigned long long requested_size,
493 blink::WebStorageQuotaCallbacks callbacks); 493 blink::WebStorageQuotaCallbacks callbacks);
494 virtual void requestDurability(blink::WebLocalFrame* frame,
495 blink::WebStorageQuotaCallbacks callbacks);
494 virtual void willOpenWebSocket(blink::WebSocketHandle* handle); 496 virtual void willOpenWebSocket(blink::WebSocketHandle* handle);
495 virtual blink::WebGeolocationClient* geolocationClient(); 497 virtual blink::WebGeolocationClient* geolocationClient();
496 virtual blink::WebPushClient* pushClient(); 498 virtual blink::WebPushClient* pushClient();
497 virtual blink::WebPresentationClient* presentationClient(); 499 virtual blink::WebPresentationClient* presentationClient();
498 virtual void willStartUsingPeerConnectionHandler( 500 virtual void willStartUsingPeerConnectionHandler(
499 blink::WebLocalFrame* frame, 501 blink::WebLocalFrame* frame,
500 blink::WebRTCPeerConnectionHandler* handler); 502 blink::WebRTCPeerConnectionHandler* handler);
501 virtual blink::WebUserMediaClient* userMediaClient(); 503 virtual blink::WebUserMediaClient* userMediaClient();
502 virtual blink::WebEncryptedMediaClient* encryptedMediaClient(); 504 virtual blink::WebEncryptedMediaClient* encryptedMediaClient();
503 virtual blink::WebMIDIClient* webMIDIClient(); 505 virtual blink::WebMIDIClient* webMIDIClient();
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
975 #endif 977 #endif
976 978
977 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 979 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
978 980
979 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 981 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
980 }; 982 };
981 983
982 } // namespace content 984 } // namespace content
983 985
984 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 986 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/child/quota_dispatcher.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698