OLD | NEW |
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/renderer/render_view_impl.h" | 5 #include "content/renderer/render_view_impl.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <cmath> | 8 #include <cmath> |
9 | 9 |
10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
(...skipping 2512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2523 GetFocusedNode())) | 2523 GetFocusedNode())) |
2524 break; | 2524 break; |
2525 did_execute_command = true; | 2525 did_execute_command = true; |
2526 } | 2526 } |
2527 | 2527 |
2528 return did_execute_command; | 2528 return did_execute_command; |
2529 } | 2529 } |
2530 | 2530 |
2531 WebKit::WebColorChooser* RenderViewImpl::createColorChooser( | 2531 WebKit::WebColorChooser* RenderViewImpl::createColorChooser( |
2532 WebKit::WebColorChooserClient* client, | 2532 WebKit::WebColorChooserClient* client, |
2533 const WebKit::WebColor& initial_color) { | 2533 const WebKit::WebColor& initial_color, |
| 2534 const WebKit::WebVector<WebKit::WebColorSuggestion>& suggestions) { |
2534 RendererWebColorChooserImpl* color_chooser = | 2535 RendererWebColorChooserImpl* color_chooser = |
2535 new RendererWebColorChooserImpl(this, client); | 2536 new RendererWebColorChooserImpl(this, client); |
2536 color_chooser->Open(static_cast<SkColor>(initial_color)); | 2537 std::vector<content::ColorSuggestion> color_suggestions; |
| 2538 for (size_t i = 0; i < suggestions.size(); i++) { |
| 2539 color_suggestions.push_back(suggestions[i]); |
| 2540 } |
| 2541 color_chooser->Open(static_cast<SkColor>(initial_color), color_suggestions); |
2537 return color_chooser; | 2542 return color_chooser; |
2538 } | 2543 } |
2539 | 2544 |
2540 bool RenderViewImpl::runFileChooser( | 2545 bool RenderViewImpl::runFileChooser( |
2541 const WebKit::WebFileChooserParams& params, | 2546 const WebKit::WebFileChooserParams& params, |
2542 WebFileChooserCompletion* chooser_completion) { | 2547 WebFileChooserCompletion* chooser_completion) { |
2543 // Do not open the file dialog in a hidden RenderView. | 2548 // Do not open the file dialog in a hidden RenderView. |
2544 if (is_hidden()) | 2549 if (is_hidden()) |
2545 return false; | 2550 return false; |
2546 FileChooserParams ipc_params; | 2551 FileChooserParams ipc_params; |
(...skipping 4019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6566 WebURL url = icon_urls[i].iconURL(); | 6571 WebURL url = icon_urls[i].iconURL(); |
6567 if (!url.isEmpty()) | 6572 if (!url.isEmpty()) |
6568 urls.push_back(FaviconURL(url, | 6573 urls.push_back(FaviconURL(url, |
6569 ToFaviconType(icon_urls[i].iconType()))); | 6574 ToFaviconType(icon_urls[i].iconType()))); |
6570 } | 6575 } |
6571 SendUpdateFaviconURL(urls); | 6576 SendUpdateFaviconURL(urls); |
6572 } | 6577 } |
6573 | 6578 |
6574 | 6579 |
6575 } // namespace content | 6580 } // namespace content |
OLD | NEW |