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

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

Issue 325933003: Scroll offset pinning and content size notifications were only used for the Mac overlay navigation … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 const blink::WebURL& target); 347 const blink::WebURL& target);
348 virtual void didAbortLoading(blink::WebLocalFrame* frame); 348 virtual void didAbortLoading(blink::WebLocalFrame* frame);
349 virtual void didCreateScriptContext(blink::WebLocalFrame* frame, 349 virtual void didCreateScriptContext(blink::WebLocalFrame* frame,
350 v8::Handle<v8::Context> context, 350 v8::Handle<v8::Context> context,
351 int extension_group, 351 int extension_group,
352 int world_id); 352 int world_id);
353 virtual void willReleaseScriptContext(blink::WebLocalFrame* frame, 353 virtual void willReleaseScriptContext(blink::WebLocalFrame* frame,
354 v8::Handle<v8::Context> context, 354 v8::Handle<v8::Context> context,
355 int world_id); 355 int world_id);
356 virtual void didFirstVisuallyNonEmptyLayout(blink::WebLocalFrame* frame); 356 virtual void didFirstVisuallyNonEmptyLayout(blink::WebLocalFrame* frame);
357 virtual void didChangeContentsSize(blink::WebLocalFrame* frame,
358 const blink::WebSize& size);
359 virtual void didChangeScrollOffset(blink::WebLocalFrame* frame); 357 virtual void didChangeScrollOffset(blink::WebLocalFrame* frame);
360 virtual void willInsertBody(blink::WebLocalFrame* frame); 358 virtual void willInsertBody(blink::WebLocalFrame* frame);
361 virtual void reportFindInPageMatchCount(int request_id, 359 virtual void reportFindInPageMatchCount(int request_id,
362 int count, 360 int count,
363 bool final_update); 361 bool final_update);
364 virtual void reportFindInPageSelection(int request_id, 362 virtual void reportFindInPageSelection(int request_id,
365 int active_match_ordinal, 363 int active_match_ordinal,
366 const blink::WebRect& sel); 364 const blink::WebRect& sel);
367 virtual void requestStorageQuota(blink::WebLocalFrame* frame, 365 virtual void requestStorageQuota(blink::WebLocalFrame* frame,
368 blink::WebStorageQuotaType type, 366 blink::WebStorageQuotaType type,
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 GeolocationDispatcher* geolocation_dispatcher_; 620 GeolocationDispatcher* geolocation_dispatcher_;
623 621
624 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 622 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
625 623
626 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 624 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
627 }; 625 };
628 626
629 } // namespace content 627 } // namespace content
630 628
631 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 629 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/browser/render_widget_host_view_mac_delegate.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698