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

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

Issue 19532003: Use a direct include of the message_loop header in content/, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « content/browser/browser_main_loop.cc ('k') | content/browser/browser_thread_impl.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) 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.h" 10 #include "base/message_loop/message_loop.h"
11 #include "base/strings/string_util.h" 11 #include "base/strings/string_util.h"
12 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
13 #include "content/browser/browser_plugin/browser_plugin_embedder.h" 13 #include "content/browser/browser_plugin/browser_plugin_embedder.h"
14 #include "content/browser/browser_plugin/browser_plugin_guest_helper.h" 14 #include "content/browser/browser_plugin/browser_plugin_guest_helper.h"
15 #include "content/browser/browser_plugin/browser_plugin_guest_manager.h" 15 #include "content/browser/browser_plugin/browser_plugin_guest_manager.h"
16 #include "content/browser/browser_plugin/browser_plugin_host_factory.h" 16 #include "content/browser/browser_plugin/browser_plugin_host_factory.h"
17 #include "content/browser/browser_thread_impl.h" 17 #include "content/browser/browser_thread_impl.h"
18 #include "content/browser/loader/resource_dispatcher_host_impl.h" 18 #include "content/browser/loader/resource_dispatcher_host_impl.h"
19 #include "content/browser/renderer_host/render_view_host_impl.h" 19 #include "content/browser/renderer_host/render_view_host_impl.h"
20 #include "content/browser/renderer_host/render_widget_host_impl.h" 20 #include "content/browser/renderer_host/render_widget_host_impl.h"
(...skipping 1474 matching lines...) Expand 10 before | Expand all | Expand 10 after
1495 base::Value::CreateStringValue(request_method)); 1495 base::Value::CreateStringValue(request_method));
1496 request_info.Set(browser_plugin::kURL, base::Value::CreateStringValue(url)); 1496 request_info.Set(browser_plugin::kURL, base::Value::CreateStringValue(url));
1497 1497
1498 SendMessageToEmbedder( 1498 SendMessageToEmbedder(
1499 new BrowserPluginMsg_RequestPermission(instance_id(), 1499 new BrowserPluginMsg_RequestPermission(instance_id(),
1500 BrowserPluginPermissionTypeDownload, permission_request_id, 1500 BrowserPluginPermissionTypeDownload, permission_request_id,
1501 request_info)); 1501 request_info));
1502 } 1502 }
1503 1503
1504 } // namespace content 1504 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/browser_main_loop.cc ('k') | content/browser/browser_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698