Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: content/renderer/pepper/pepper_plugin_delegate_impl.cc

Issue 12084077: FileSystem mods: Changes to snapshot file creation to remove dependencies on blobs. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 {
brettw 2013/02/07 04:52:58 Ditto
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 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698