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

Side by Side Diff: chrome_frame/npapi_url_request.cc

Issue 6458004: Remove includes of message headers in headers. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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_frame/chrome_frame_plugin.cc ('k') | chrome_frame/protocol_sink_wrap.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_frame/npapi_url_request.h" 5 #include "chrome_frame/npapi_url_request.h"
6 6
7 #include "base/string_number_conversions.h" 7 #include "base/string_number_conversions.h"
8 #include "base/threading/platform_thread.h" 8 #include "base/threading/platform_thread.h"
9 #include "chrome/common/automation_messages.h"
9 #include "chrome_frame/chrome_frame_npapi.h" 10 #include "chrome_frame/chrome_frame_npapi.h"
10 #include "chrome_frame/np_browser_functions.h" 11 #include "chrome_frame/np_browser_functions.h"
11 #include "chrome_frame/np_utils.h" 12 #include "chrome_frame/np_utils.h"
12 #include "net/base/net_errors.h" 13 #include "net/base/net_errors.h"
13 14
14 class NPAPIUrlRequest : public PluginUrlRequest { 15 class NPAPIUrlRequest : public PluginUrlRequest {
15 public: 16 public:
16 explicit NPAPIUrlRequest(NPP instance); 17 explicit NPAPIUrlRequest(NPP instance);
17 ~NPAPIUrlRequest(); 18 ~NPAPIUrlRequest();
18 19
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 } 451 }
451 } 452 }
452 453
453 scoped_refptr<NPAPIUrlRequest> NPAPIUrlRequestManager::LookupRequest( 454 scoped_refptr<NPAPIUrlRequest> NPAPIUrlRequestManager::LookupRequest(
454 int request_id) { 455 int request_id) {
455 RequestMap::iterator index = request_map_.find(request_id); 456 RequestMap::iterator index = request_map_.find(request_id);
456 if (index != request_map_.end()) 457 if (index != request_map_.end())
457 return index->second; 458 return index->second;
458 return NULL; 459 return NULL;
459 } 460 }
OLDNEW
« no previous file with comments | « chrome_frame/chrome_frame_plugin.cc ('k') | chrome_frame/protocol_sink_wrap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698