| OLD | NEW |
| 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 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 void OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size); | 534 void OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size); |
| 535 void OnDisableAutoResize(const gfx::Size& new_size); | 535 void OnDisableAutoResize(const gfx::Size& new_size); |
| 536 void OnEnumerateDirectoryResponse(int id, | 536 void OnEnumerateDirectoryResponse(int id, |
| 537 const std::vector<base::FilePath>& paths); | 537 const std::vector<base::FilePath>& paths); |
| 538 void OnMediaPlayerActionAt(const gfx::Point& location, | 538 void OnMediaPlayerActionAt(const gfx::Point& location, |
| 539 const blink::WebMediaPlayerAction& action); | 539 const blink::WebMediaPlayerAction& action); |
| 540 void OnPluginActionAt(const gfx::Point& location, | 540 void OnPluginActionAt(const gfx::Point& location, |
| 541 const blink::WebPluginAction& action); | 541 const blink::WebPluginAction& action); |
| 542 void OnMoveOrResizeStarted(); | 542 void OnMoveOrResizeStarted(); |
| 543 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); | 543 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); |
| 544 void OnResolveTapDisambiguation(double timestamp_seconds, |
| 545 gfx::Point tap_viewport_offset, |
| 546 bool is_long_press); |
| 544 void OnSetActive(bool active); | 547 void OnSetActive(bool active); |
| 545 void OnSetBackgroundOpaque(bool opaque); | 548 void OnSetBackgroundOpaque(bool opaque); |
| 546 void OnExitFullscreen(); | 549 void OnExitFullscreen(); |
| 547 void OnSetHistoryOffsetAndLength(int history_offset, int history_length); | 550 void OnSetHistoryOffsetAndLength(int history_offset, int history_length); |
| 548 void OnSetInitialFocus(bool reverse); | 551 void OnSetInitialFocus(bool reverse); |
| 549 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 552 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 550 void OnSetWebUIProperty(const std::string& name, const std::string& value); | 553 void OnSetWebUIProperty(const std::string& name, const std::string& value); |
| 551 void OnSuppressDialogsUntilSwapOut(); | 554 void OnSuppressDialogsUntilSwapOut(); |
| 552 void OnUpdateTargetURLAck(); | 555 void OnUpdateTargetURLAck(); |
| 553 void OnUpdateWebPreferences(const WebPreferences& prefs); | 556 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 836 // --------------------------------------------------------------------------- | 839 // --------------------------------------------------------------------------- |
| 837 | 840 |
| 838 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; | 841 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; |
| 839 | 842 |
| 840 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 843 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 841 }; | 844 }; |
| 842 | 845 |
| 843 } // namespace content | 846 } // namespace content |
| 844 | 847 |
| 845 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 848 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |