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

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

Issue 21272: janitorial: browser_render_process_host header/lint cleanup. (try 2) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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
« no previous file with comments | « chrome/renderer/about_handler.h ('k') | chrome/renderer/render_process.h » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/plugin/chrome_plugin_host.h" 5 #include "chrome/plugin/chrome_plugin_host.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "chrome/common/chrome_constants.h" 9 #include "chrome/common/chrome_constants.h"
10 #include "chrome/common/chrome_plugin_lib.h" 10 #include "chrome/common/chrome_plugin_lib.h"
11 #include "chrome/common/chrome_plugin_util.h" 11 #include "chrome/common/chrome_plugin_util.h"
12 #include "chrome/common/render_messages.h" 12 #include "chrome/common/render_messages.h"
13 #include "chrome/common/resource_dispatcher.h" 13 #include "chrome/common/resource_dispatcher.h"
14 #include "chrome/renderer/render_thread.h"
14 #include "chrome/renderer/render_view.h" 15 #include "chrome/renderer/render_view.h"
15 #include "net/base/data_url.h" 16 #include "net/base/data_url.h"
16 #include "net/base/upload_data.h" 17 #include "net/base/upload_data.h"
17 #include "webkit/glue/plugins/plugin_instance.h" 18 #include "webkit/glue/plugins/plugin_instance.h"
18 #include "webkit/glue/resource_loader_bridge.h" 19 #include "webkit/glue/resource_loader_bridge.h"
19 #include "webkit/glue/resource_type.h" 20 #include "webkit/glue/resource_type.h"
20 #include "webkit/glue/webkit_glue.h" 21 #include "webkit/glue/webkit_glue.h"
21 #include "webkit/glue/webframe.h" 22 #include "webkit/glue/webframe.h"
22 23
23 namespace { 24 namespace {
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 637
637 response_funcs.size = sizeof(response_funcs); 638 response_funcs.size = sizeof(response_funcs);
638 response_funcs.received_redirect = CPRR_ReceivedRedirect; 639 response_funcs.received_redirect = CPRR_ReceivedRedirect;
639 response_funcs.start_completed = CPRR_StartCompleted; 640 response_funcs.start_completed = CPRR_StartCompleted;
640 response_funcs.read_completed = CPRR_ReadCompleted; 641 response_funcs.read_completed = CPRR_ReadCompleted;
641 response_funcs.upload_progress = CPRR_UploadProgress; 642 response_funcs.upload_progress = CPRR_UploadProgress;
642 } 643 }
643 644
644 return &browser_funcs; 645 return &browser_funcs;
645 } 646 }
OLDNEW
« no previous file with comments | « chrome/renderer/about_handler.h ('k') | chrome/renderer/render_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698