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

Side by Side Diff: chrome_frame/plugin_url_request.cc

Issue 4194007: Revert "Refactor automation messages." due to mysterious problems on mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month 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/external_tab_test.cc ('k') | chrome_frame/test/automation_client_mock.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/plugin_url_request.h" 5 #include "chrome_frame/plugin_url_request.h"
6 6
7 #include "chrome/common/automation_messages.h" 7 #include "chrome/test/automation/automation_messages.h"
8 #include "chrome_frame/np_browser_functions.h" 8 #include "chrome_frame/np_browser_functions.h"
9 9
10 PluginUrlRequest::PluginUrlRequest() 10 PluginUrlRequest::PluginUrlRequest()
11 : delegate_(NULL), 11 : delegate_(NULL),
12 remote_request_id_(-1), 12 remote_request_id_(-1),
13 post_data_len_(0), 13 post_data_len_(0),
14 enable_frame_busting_(false), 14 enable_frame_busting_(false),
15 resource_type_(ResourceType::MAIN_FRAME), 15 resource_type_(ResourceType::MAIN_FRAME),
16 load_flags_(0) { 16 load_flags_(0) {
17 } 17 }
(...skipping 29 matching lines...) Expand all
47 upload_stream->AddRef(); 47 upload_stream->AddRef();
48 upload_stream->Initialize(upload_data); 48 upload_stream->Initialize(upload_data);
49 upload_data_.Attach(upload_stream); 49 upload_data_.Attach(upload_stream);
50 } 50 }
51 } 51 }
52 52
53 enable_frame_busting_ = enable_frame_busting; 53 enable_frame_busting_ = enable_frame_busting;
54 54
55 return true; 55 return true;
56 } 56 }
OLDNEW
« no previous file with comments | « chrome_frame/external_tab_test.cc ('k') | chrome_frame/test/automation_client_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698