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

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

Issue 11410019: ********** Chromium Blob hacking (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 virtual ~AsyncOpenFileSystemURLCallbackTranslator() {} 255 virtual ~AsyncOpenFileSystemURLCallbackTranslator() {}
256 256
257 virtual void DidSucceed() { 257 virtual void DidSucceed() {
258 NOTREACHED(); 258 NOTREACHED();
259 } 259 }
260 virtual void DidReadMetadata( 260 virtual void DidReadMetadata(
261 const base::PlatformFileInfo& file_info, 261 const base::PlatformFileInfo& file_info,
262 const FilePath& platform_path) { 262 const FilePath& platform_path) {
263 NOTREACHED(); 263 NOTREACHED();
264 } 264 }
265 virtual void DidCreateSnapshotFile(
266 const base::PlatformFileInfo& file_info,
267 const FilePath& platform_path) {
268 NOTREACHED();
269 }
265 virtual void DidReadDirectory( 270 virtual void DidReadDirectory(
266 const std::vector<base::FileUtilProxy::Entry>& entries, 271 const std::vector<base::FileUtilProxy::Entry>& entries,
267 bool has_more) { 272 bool has_more) {
268 NOTREACHED(); 273 NOTREACHED();
269 } 274 }
270 virtual void DidOpenFileSystem(const std::string& name, 275 virtual void DidOpenFileSystem(const std::string& name,
271 const GURL& root) { 276 const GURL& root) {
272 NOTREACHED(); 277 NOTREACHED();
273 } 278 }
274 279
(...skipping 1465 matching lines...) Expand 10 before | Expand all | Expand 10 after
1740 RenderWidgetFullscreenPepper* container = 1745 RenderWidgetFullscreenPepper* container =
1741 static_cast<RenderWidgetFullscreenPepper*>( 1746 static_cast<RenderWidgetFullscreenPepper*>(
1742 instance->fullscreen_container()); 1747 instance->fullscreen_container());
1743 return container->mouse_lock_dispatcher(); 1748 return container->mouse_lock_dispatcher();
1744 } else { 1749 } else {
1745 return render_view_->mouse_lock_dispatcher(); 1750 return render_view_->mouse_lock_dispatcher();
1746 } 1751 }
1747 } 1752 }
1748 1753
1749 } // namespace content 1754 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698