| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |