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

Side by Side Diff: chrome/renderer/pepper_plugin_delegate_impl.cc

Issue 3119035: FBTF: Move individual XXXMsg_Params structs to a new file. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Fix comment Created 10 years, 3 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
« no previous file with comments | « chrome/renderer/pepper_devices.cc ('k') | chrome/renderer/print_web_view_helper.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "chrome/renderer/pepper_plugin_delegate_impl.h" 5 #include "chrome/renderer/pepper_plugin_delegate_impl.h"
6 6
7 #include "app/surface/transport_dib.h" 7 #include "app/surface/transport_dib.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/scoped_ptr.h" 9 #include "base/scoped_ptr.h"
10 #include "base/task.h" 10 #include "base/task.h"
11 #include "chrome/common/render_messages.h" 11 #include "chrome/common/render_messages.h"
12 #include "chrome/common/render_messages_params.h"
12 #include "chrome/renderer/audio_message_filter.h" 13 #include "chrome/renderer/audio_message_filter.h"
13 #include "chrome/renderer/command_buffer_proxy.h" 14 #include "chrome/renderer/command_buffer_proxy.h"
14 #include "chrome/renderer/render_view.h" 15 #include "chrome/renderer/render_view.h"
15 #include "chrome/renderer/webplugin_delegate_proxy.h" 16 #include "chrome/renderer/webplugin_delegate_proxy.h"
16 #include "third_party/WebKit/WebKit/chromium/public/WebFileChooserCompletion.h" 17 #include "third_party/WebKit/WebKit/chromium/public/WebFileChooserCompletion.h"
17 #include "third_party/WebKit/WebKit/chromium/public/WebFileChooserParams.h" 18 #include "third_party/WebKit/WebKit/chromium/public/WebFileChooserParams.h"
18 #include "third_party/WebKit/WebKit/chromium/public/WebPluginContainer.h" 19 #include "third_party/WebKit/WebKit/chromium/public/WebPluginContainer.h"
19 #include "webkit/glue/plugins/pepper_plugin_instance.h" 20 #include "webkit/glue/plugins/pepper_plugin_instance.h"
20 #include "webkit/glue/plugins/webplugin.h" 21 #include "webkit/glue/plugins/webplugin.h"
21 22
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 } else { 601 } else {
601 return NULL; 602 return NULL;
602 } 603 }
603 } 604 }
604 605
605 bool PepperPluginDelegateImpl::RunFileChooser( 606 bool PepperPluginDelegateImpl::RunFileChooser(
606 const WebKit::WebFileChooserParams& params, 607 const WebKit::WebFileChooserParams& params,
607 WebKit::WebFileChooserCompletion* chooser_completion) { 608 WebKit::WebFileChooserCompletion* chooser_completion) {
608 return render_view_->runFileChooser(params, chooser_completion); 609 return render_view_->runFileChooser(params, chooser_completion);
609 } 610 }
OLDNEW
« no previous file with comments | « chrome/renderer/pepper_devices.cc ('k') | chrome/renderer/print_web_view_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698