| 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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 void OnEnumerateDirectoryResponse(int id, | 537 void OnEnumerateDirectoryResponse(int id, |
| 538 const std::vector<base::FilePath>& paths); | 538 const std::vector<base::FilePath>& paths); |
| 539 void OnMediaPlayerActionAt(const gfx::Point& location, | 539 void OnMediaPlayerActionAt(const gfx::Point& location, |
| 540 const blink::WebMediaPlayerAction& action); | 540 const blink::WebMediaPlayerAction& action); |
| 541 void OnPluginActionAt(const gfx::Point& location, | 541 void OnPluginActionAt(const gfx::Point& location, |
| 542 const blink::WebPluginAction& action); | 542 const blink::WebPluginAction& action); |
| 543 void OnMoveOrResizeStarted(); | 543 void OnMoveOrResizeStarted(); |
| 544 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); | 544 void OnReleaseDisambiguationPopupBitmap(const cc::SharedBitmapId& id); |
| 545 void OnSetActive(bool active); | 545 void OnSetActive(bool active); |
| 546 void OnSetBackgroundOpaque(bool opaque); | 546 void OnSetBackgroundOpaque(bool opaque); |
| 547 void OnSetBaseBackgroundColor(SkColor color); |
| 547 void OnExitFullscreen(); | 548 void OnExitFullscreen(); |
| 548 void OnSetHistoryOffsetAndLength(int history_offset, int history_length); | 549 void OnSetHistoryOffsetAndLength(int history_offset, int history_length); |
| 549 void OnSetInitialFocus(bool reverse); | 550 void OnSetInitialFocus(bool reverse); |
| 550 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); | 551 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
| 551 void OnSetWebUIProperty(const std::string& name, const std::string& value); | 552 void OnSetWebUIProperty(const std::string& name, const std::string& value); |
| 552 void OnSuppressDialogsUntilSwapOut(); | 553 void OnSuppressDialogsUntilSwapOut(); |
| 553 void OnUpdateTargetURLAck(); | 554 void OnUpdateTargetURLAck(); |
| 554 void OnUpdateWebPreferences(const WebPreferences& prefs); | 555 void OnUpdateWebPreferences(const WebPreferences& prefs); |
| 555 void OnSetPageScale(float page_scale_factor); | 556 void OnSetPageScale(float page_scale_factor); |
| 556 void OnForceRedraw(const ui::LatencyInfo& latency_info); | 557 void OnForceRedraw(const ui::LatencyInfo& latency_info); |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 // --------------------------------------------------------------------------- | 838 // --------------------------------------------------------------------------- |
| 838 | 839 |
| 839 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; | 840 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; |
| 840 | 841 |
| 841 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 842 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 842 }; | 843 }; |
| 843 | 844 |
| 844 } // namespace content | 845 } // namespace content |
| 845 | 846 |
| 846 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 847 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |