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() { | 269 virtual void DidSucceed() { |
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) { | 274 const FilePath& platform_path) { |
275 NOTREACHED(); | 275 NOTREACHED(); |
276 } | 276 } |
| 277 virtual void DidCreateSnapshotFile( |
| 278 const base::PlatformFileInfo& file_info, |
| 279 const 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) { | 284 bool has_more) { |
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) { | 288 const GURL& root) { |
284 NOTREACHED(); | 289 NOTREACHED(); |
285 } | 290 } |
286 | 291 |
(...skipping 1353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1640 RenderWidgetFullscreenPepper* container = | 1645 RenderWidgetFullscreenPepper* container = |
1641 static_cast<RenderWidgetFullscreenPepper*>( | 1646 static_cast<RenderWidgetFullscreenPepper*>( |
1642 instance->fullscreen_container()); | 1647 instance->fullscreen_container()); |
1643 return container->mouse_lock_dispatcher(); | 1648 return container->mouse_lock_dispatcher(); |
1644 } else { | 1649 } else { |
1645 return render_view_->mouse_lock_dispatcher(); | 1650 return render_view_->mouse_lock_dispatcher(); |
1646 } | 1651 } |
1647 } | 1652 } |
1648 | 1653 |
1649 } // namespace content | 1654 } // namespace content |
OLD | NEW |