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

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

Issue 12035111: Move file_util_proxy to base/files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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
« no previous file with comments | « content/renderer/pepper/pepper_file_io_host.cc ('k') | net/url_request/url_fetcher_core.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
11 11
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/callback.h" 13 #include "base/callback.h"
14 #include "base/command_line.h" 14 #include "base/command_line.h"
15 #include "base/file_path.h" 15 #include "base/file_path.h"
16 #include "base/file_util_proxy.h" 16 #include "base/files/file_util_proxy.h"
17 #include "base/logging.h" 17 #include "base/logging.h"
18 #include "base/string_split.h" 18 #include "base/string_split.h"
19 #include "base/sync_socket.h" 19 #include "base/sync_socket.h"
20 #include "base/time.h" 20 #include "base/time.h"
21 #include "content/common/child_process.h" 21 #include "content/common/child_process.h"
22 #include "content/common/child_process_messages.h" 22 #include "content/common/child_process_messages.h"
23 #include "content/common/child_thread.h" 23 #include "content/common/child_thread.h"
24 #include "content/common/fileapi/file_system_dispatcher.h" 24 #include "content/common/fileapi/file_system_dispatcher.h"
25 #include "content/common/fileapi/file_system_messages.h" 25 #include "content/common/fileapi/file_system_messages.h"
26 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" 26 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h"
(...skipping 1613 matching lines...) Expand 10 before | Expand all | Expand 10 after
1640 RenderWidgetFullscreenPepper* container = 1640 RenderWidgetFullscreenPepper* container =
1641 static_cast<RenderWidgetFullscreenPepper*>( 1641 static_cast<RenderWidgetFullscreenPepper*>(
1642 instance->fullscreen_container()); 1642 instance->fullscreen_container());
1643 return container->mouse_lock_dispatcher(); 1643 return container->mouse_lock_dispatcher();
1644 } else { 1644 } else {
1645 return render_view_->mouse_lock_dispatcher(); 1645 return render_view_->mouse_lock_dispatcher();
1646 } 1646 }
1647 } 1647 }
1648 1648
1649 } // namespace content 1649 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_file_io_host.cc ('k') | net/url_request/url_fetcher_core.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698