| 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 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1588 RenderWidgetFullscreenPepper* container = | 1593 RenderWidgetFullscreenPepper* container = |
| 1589 static_cast<RenderWidgetFullscreenPepper*>( | 1594 static_cast<RenderWidgetFullscreenPepper*>( |
| 1590 instance->fullscreen_container()); | 1595 instance->fullscreen_container()); |
| 1591 return container->mouse_lock_dispatcher(); | 1596 return container->mouse_lock_dispatcher(); |
| 1592 } else { | 1597 } else { |
| 1593 return render_view_->mouse_lock_dispatcher(); | 1598 return render_view_->mouse_lock_dispatcher(); |
| 1594 } | 1599 } |
| 1595 } | 1600 } |
| 1596 | 1601 |
| 1597 } // namespace content | 1602 } // namespace content |
| OLD | NEW |