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

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

Issue 16755004: Use a direct include of strings headers in content/browser/, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
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.h"
11 #include "base/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"
21 #include "content/browser/web_contents/web_contents_impl.h" 21 #include "content/browser/web_contents/web_contents_impl.h"
(...skipping 1538 matching lines...) Expand 10 before | Expand all | Expand 10 after
1560 base::Value::CreateStringValue(request_method)); 1560 base::Value::CreateStringValue(request_method));
1561 request_info.Set(browser_plugin::kURL, base::Value::CreateStringValue(url)); 1561 request_info.Set(browser_plugin::kURL, base::Value::CreateStringValue(url));
1562 1562
1563 SendMessageToEmbedder( 1563 SendMessageToEmbedder(
1564 new BrowserPluginMsg_RequestPermission(instance_id(), 1564 new BrowserPluginMsg_RequestPermission(instance_id(),
1565 BrowserPluginPermissionTypeDownload, permission_request_id, 1565 BrowserPluginPermissionTypeDownload, permission_request_id,
1566 request_info)); 1566 request_info));
1567 } 1567 }
1568 1568
1569 } // namespace content 1569 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/browser_main_loop.cc ('k') | content/browser/browser_plugin/browser_plugin_host_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698