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

Side by Side Diff: content/browser/browser_plugin/browser_plugin_guest.cc

Issue 20003004: reland crrev.com/212927 Move webkitplatformsupport_impl and related from glue to child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase & allocator dep for components_unittests in shared_library2 Created 7 years, 5 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/plugin_url_request.h ('k') | content/browser/child_process_security_policy_impl.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) 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/browser/browser_plugin/browser_plugin_guest.h" 5 #include "content/browser/browser_plugin/browser_plugin_guest.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
(...skipping 28 matching lines...) Expand all
39 #include "content/public/browser/user_metrics.h" 39 #include "content/public/browser/user_metrics.h"
40 #include "content/public/browser/web_contents_view.h" 40 #include "content/public/browser/web_contents_view.h"
41 #include "content/public/common/content_switches.h" 41 #include "content/public/common/content_switches.h"
42 #include "content/public/common/drop_data.h" 42 #include "content/public/common/drop_data.h"
43 #include "content/public/common/media_stream_request.h" 43 #include "content/public/common/media_stream_request.h"
44 #include "content/public/common/result_codes.h" 44 #include "content/public/common/result_codes.h"
45 #include "net/url_request/url_request.h" 45 #include "net/url_request/url_request.h"
46 #include "third_party/WebKit/public/web/WebCursorInfo.h" 46 #include "third_party/WebKit/public/web/WebCursorInfo.h"
47 #include "ui/base/keycodes/keyboard_codes.h" 47 #include "ui/base/keycodes/keyboard_codes.h"
48 #include "ui/surface/transport_dib.h" 48 #include "ui/surface/transport_dib.h"
49 #include "webkit/glue/resource_type.h" 49 #include "webkit/common/resource_type.h"
50 50
51 #if defined(OS_MACOSX) 51 #if defined(OS_MACOSX)
52 #include "content/browser/browser_plugin/browser_plugin_popup_menu_helper_mac.h" 52 #include "content/browser/browser_plugin/browser_plugin_popup_menu_helper_mac.h"
53 #endif 53 #endif
54 54
55 namespace content { 55 namespace content {
56 56
57 // static 57 // static
58 BrowserPluginHostFactory* BrowserPluginGuest::factory_ = NULL; 58 BrowserPluginHostFactory* BrowserPluginGuest::factory_ = NULL;
59 59
(...skipping 1486 matching lines...) Expand 10 before | Expand all | Expand 10 after
1546 base::Value::CreateStringValue(request_method)); 1546 base::Value::CreateStringValue(request_method));
1547 request_info.Set(browser_plugin::kURL, base::Value::CreateStringValue(url)); 1547 request_info.Set(browser_plugin::kURL, base::Value::CreateStringValue(url));
1548 1548
1549 SendMessageToEmbedder( 1549 SendMessageToEmbedder(
1550 new BrowserPluginMsg_RequestPermission(instance_id(), 1550 new BrowserPluginMsg_RequestPermission(instance_id(),
1551 BrowserPluginPermissionTypeDownload, permission_request_id, 1551 BrowserPluginPermissionTypeDownload, permission_request_id,
1552 request_info)); 1552 request_info));
1553 } 1553 }
1554 1554
1555 } // namespace content 1555 } // namespace content
OLDNEW
« no previous file with comments | « chrome_frame/plugin_url_request.h ('k') | content/browser/child_process_security_policy_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698