OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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/browser/renderer_host/render_view_host.h" | 5 #include "chrome/browser/renderer_host/render_view_host.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/gfx/native_widget_types.h" | 10 #include "base/gfx/native_widget_types.h" |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 } | 391 } |
392 | 392 |
393 void RenderViewHost::DragTargetDragEnter(const WebDropData& drop_data, | 393 void RenderViewHost::DragTargetDragEnter(const WebDropData& drop_data, |
394 const gfx::Point& client_pt, const gfx::Point& screen_pt) { | 394 const gfx::Point& client_pt, const gfx::Point& screen_pt) { |
395 // Grant the renderer the ability to load the drop_data. | 395 // Grant the renderer the ability to load the drop_data. |
396 RendererSecurityPolicy* policy = RendererSecurityPolicy::GetInstance(); | 396 RendererSecurityPolicy* policy = RendererSecurityPolicy::GetInstance(); |
397 policy->GrantRequestURL(process()->pid(), drop_data.url); | 397 policy->GrantRequestURL(process()->pid(), drop_data.url); |
398 for (std::vector<std::wstring>::const_iterator | 398 for (std::vector<std::wstring>::const_iterator |
399 iter(drop_data.filenames.begin()); | 399 iter(drop_data.filenames.begin()); |
400 iter != drop_data.filenames.end(); ++iter) { | 400 iter != drop_data.filenames.end(); ++iter) { |
401 policy->GrantRequestURL(process()->pid(), net::FilePathToFileURL(*iter)); | 401 FilePath path = FilePath::FromWStringHack(*iter); |
402 policy->GrantUploadFile(process()->pid(), FilePath::FromWStringHack(*iter)); | 402 policy->GrantRequestURL(process()->pid(), net::FilePathToFileURL(path)); |
| 403 policy->GrantUploadFile(process()->pid(), path); |
403 } | 404 } |
404 Send(new ViewMsg_DragTargetDragEnter(routing_id(), drop_data, client_pt, | 405 Send(new ViewMsg_DragTargetDragEnter(routing_id(), drop_data, client_pt, |
405 screen_pt)); | 406 screen_pt)); |
406 } | 407 } |
407 | 408 |
408 void RenderViewHost::DragTargetDragOver( | 409 void RenderViewHost::DragTargetDragOver( |
409 const gfx::Point& client_pt, const gfx::Point& screen_pt) { | 410 const gfx::Point& client_pt, const gfx::Point& screen_pt) { |
410 Send(new ViewMsg_DragTargetDragOver(routing_id(), client_pt, screen_pt)); | 411 Send(new ViewMsg_DragTargetDragOver(routing_id(), client_pt, screen_pt)); |
411 } | 412 } |
412 | 413 |
(...skipping 971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1384 int callback_id) { | 1385 int callback_id) { |
1385 // TODO(aa): Here is where we can check that this renderer was supposed to be | 1386 // TODO(aa): Here is where we can check that this renderer was supposed to be |
1386 // able to call extension APIs. | 1387 // able to call extension APIs. |
1387 extension_function_dispatcher_.HandleRequest(name, args, callback_id); | 1388 extension_function_dispatcher_.HandleRequest(name, args, callback_id); |
1388 } | 1389 } |
1389 | 1390 |
1390 void RenderViewHost::SendExtensionResponse(int callback_id, | 1391 void RenderViewHost::SendExtensionResponse(int callback_id, |
1391 const std::string& response) { | 1392 const std::string& response) { |
1392 Send(new ViewMsg_ExtensionResponse(routing_id(), callback_id, response)); | 1393 Send(new ViewMsg_ExtensionResponse(routing_id(), callback_id, response)); |
1393 } | 1394 } |
OLD | NEW |