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

Side by Side Diff: chrome/plugin/chrome_plugin_host.cc

Issue 3043055: Remove wstring-ness from some more locale variables. (Closed)
Patch Set: Created 10 years, 4 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
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/renderer/localized_error.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/plugin/chrome_plugin_host.h" 5 #include "chrome/plugin/chrome_plugin_host.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/file_path.h" 8 #include "base/file_path.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 std::string retval = WideToUTF8( 433 std::string retval = WideToUTF8(
434 path.Append(chrome::kChromePluginDataDirname).ToWStringHack()); 434 path.Append(chrome::kChromePluginDataDirname).ToWStringHack());
435 *static_cast<char**>(buf) = CPB_StringDup(CPB_Alloc, retval); 435 *static_cast<char**>(buf) = CPB_StringDup(CPB_Alloc, retval);
436 436
437 return CPERR_SUCCESS; 437 return CPERR_SUCCESS;
438 } 438 }
439 case CPBROWSINGCONTEXT_UI_LOCALE_PTR: { 439 case CPBROWSINGCONTEXT_UI_LOCALE_PTR: {
440 if (buf_size < sizeof(char*)) 440 if (buf_size < sizeof(char*))
441 return sizeof(char*); 441 return sizeof(char*);
442 442
443 std::wstring wretval = webkit_glue::GetWebKitLocale(); 443 std::string retval = webkit_glue::GetWebKitLocale();
444 *static_cast<char**>(buf) = CPB_StringDup(CPB_Alloc, WideToUTF8(wretval)); 444 *static_cast<char**>(buf) = CPB_StringDup(CPB_Alloc, retval);
445 return CPERR_SUCCESS; 445 return CPERR_SUCCESS;
446 } 446 }
447 } 447 }
448 448
449 return CPERR_FAILURE; 449 return CPERR_FAILURE;
450 } 450 }
451 451
452 CPError STDCALL CPB_AddUICommand(CPID id, int command) { 452 CPError STDCALL CPB_AddUICommand(CPID id, int command) {
453 // Not implemented in the plugin process 453 // Not implemented in the plugin process
454 return CPERR_FAILURE; 454 return CPERR_FAILURE;
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 715
716 response_funcs.size = sizeof(response_funcs); 716 response_funcs.size = sizeof(response_funcs);
717 response_funcs.received_redirect = CPRR_ReceivedRedirect; 717 response_funcs.received_redirect = CPRR_ReceivedRedirect;
718 response_funcs.start_completed = CPRR_StartCompleted; 718 response_funcs.start_completed = CPRR_StartCompleted;
719 response_funcs.read_completed = CPRR_ReadCompleted; 719 response_funcs.read_completed = CPRR_ReadCompleted;
720 response_funcs.upload_progress = CPRR_UploadProgress; 720 response_funcs.upload_progress = CPRR_UploadProgress;
721 } 721 }
722 722
723 return &browser_funcs; 723 return &browser_funcs;
724 } 724 }
OLDNEW
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/renderer/localized_error.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698