| 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 #include "content/renderer/pepper/pepper_plugin_delegate_impl.h" | 5 #include "content/renderer/pepper/pepper_plugin_delegate_impl.h" |
| 6 | 6 |
| 7 #include <cmath> | 7 #include <cmath> |
| 8 #include <cstddef> | 8 #include <cstddef> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <queue> | 10 #include <queue> |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 virtual ~AsyncOpenFileSystemURLCallbackTranslator() {} | 267 virtual ~AsyncOpenFileSystemURLCallbackTranslator() {} |
| 268 | 268 |
| 269 virtual void DidSucceed() OVERRIDE { | 269 virtual void DidSucceed() OVERRIDE { |
| 270 NOTREACHED(); | 270 NOTREACHED(); |
| 271 } | 271 } |
| 272 virtual void DidReadMetadata( | 272 virtual void DidReadMetadata( |
| 273 const base::PlatformFileInfo& file_info, | 273 const base::PlatformFileInfo& file_info, |
| 274 const FilePath& platform_path) OVERRIDE { | 274 const FilePath& platform_path) OVERRIDE { |
| 275 NOTREACHED(); | 275 NOTREACHED(); |
| 276 } | 276 } |
| 277 virtual void DidCreateSnapshotFile( |
| 278 const base::PlatformFileInfo& file_info, |
| 279 const base::FilePath& platform_path) OVERRIDE { |
| 280 NOTREACHED(); |
| 281 } |
| 277 virtual void DidReadDirectory( | 282 virtual void DidReadDirectory( |
| 278 const std::vector<base::FileUtilProxy::Entry>& entries, | 283 const std::vector<base::FileUtilProxy::Entry>& entries, |
| 279 bool has_more) OVERRIDE { | 284 bool has_more) OVERRIDE { |
| 280 NOTREACHED(); | 285 NOTREACHED(); |
| 281 } | 286 } |
| 282 virtual void DidOpenFileSystem(const std::string& name, | 287 virtual void DidOpenFileSystem(const std::string& name, |
| 283 const GURL& root) OVERRIDE { | 288 const GURL& root) OVERRIDE { |
| 284 NOTREACHED(); | 289 NOTREACHED(); |
| 285 } | 290 } |
| 286 | 291 |
| (...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1642 RenderWidgetFullscreenPepper* container = | 1647 RenderWidgetFullscreenPepper* container = |
| 1643 static_cast<RenderWidgetFullscreenPepper*>( | 1648 static_cast<RenderWidgetFullscreenPepper*>( |
| 1644 instance->fullscreen_container()); | 1649 instance->fullscreen_container()); |
| 1645 return container->mouse_lock_dispatcher(); | 1650 return container->mouse_lock_dispatcher(); |
| 1646 } else { | 1651 } else { |
| 1647 return render_view_->mouse_lock_dispatcher(); | 1652 return render_view_->mouse_lock_dispatcher(); |
| 1648 } | 1653 } |
| 1649 } | 1654 } |
| 1650 | 1655 |
| 1651 } // namespace content | 1656 } // namespace content |
| OLD | NEW |