| 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 <stddef.h> |     8 #include <stddef.h> | 
|     9 #include <stdint.h> |     9 #include <stdint.h> | 
|    10  |    10  | 
| (...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   887   void OnSetAccessibilityMode(AccessibilityMode new_mode); |   887   void OnSetAccessibilityMode(AccessibilityMode new_mode); | 
|   888   void OnSnapshotAccessibilityTree(int callback_id); |   888   void OnSnapshotAccessibilityTree(int callback_id); | 
|   889   void OnExtractSmartClipData(uint32_t callback_id, const gfx::Rect& rect); |   889   void OnExtractSmartClipData(uint32_t callback_id, const gfx::Rect& rect); | 
|   890   void OnUpdateOpener(int opener_routing_id); |   890   void OnUpdateOpener(int opener_routing_id); | 
|   891   void OnDidUpdateFramePolicy( |   891   void OnDidUpdateFramePolicy( | 
|   892       blink::WebSandboxFlags flags, |   892       blink::WebSandboxFlags flags, | 
|   893       const ParsedFeaturePolicyHeader& container_policy); |   893       const ParsedFeaturePolicyHeader& container_policy); | 
|   894   void OnSetFrameOwnerProperties( |   894   void OnSetFrameOwnerProperties( | 
|   895       const FrameOwnerProperties& frame_owner_properties); |   895       const FrameOwnerProperties& frame_owner_properties); | 
|   896   void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |   896   void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 
 |   897   void OnAdvanceFocusInForm(bool forward); | 
|   897   void OnSetFocusedFrame(); |   898   void OnSetFocusedFrame(); | 
|   898   void OnTextTrackSettingsChanged( |   899   void OnTextTrackSettingsChanged( | 
|   899       const FrameMsg_TextTrackSettings_Params& params); |   900       const FrameMsg_TextTrackSettings_Params& params); | 
|   900   void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); |   901   void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); | 
|   901   void OnCommitNavigation(const ResourceResponseHead& response, |   902   void OnCommitNavigation(const ResourceResponseHead& response, | 
|   902                           const GURL& stream_url, |   903                           const GURL& stream_url, | 
|   903                           mojo::DataPipeConsumerHandle handle, |   904                           mojo::DataPipeConsumerHandle handle, | 
|   904                           const CommonNavigationParams& common_params, |   905                           const CommonNavigationParams& common_params, | 
|   905                           const RequestNavigationParams& request_params); |   906                           const RequestNavigationParams& request_params); | 
|   906   void OnFailedNavigation(const CommonNavigationParams& common_params, |   907   void OnFailedNavigation(const CommonNavigationParams& common_params, | 
| (...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1437       interface_provider_bindings_; |  1438       interface_provider_bindings_; | 
|  1438  |  1439  | 
|  1439   base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |  1440   base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 
|  1440  |  1441  | 
|  1441   DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |  1442   DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 
|  1442 }; |  1443 }; | 
|  1443  |  1444  | 
|  1444 }  // namespace content |  1445 }  // namespace content | 
|  1445  |  1446  | 
|  1446 #endif  // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |  1447 #endif  // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 
| OLD | NEW |