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

Side by Side Diff: chrome/browser/extensions/extension_menu_manager_unittest.cc

Issue 3017056: Update the names of some parameters passed to contextMenu onclick handlers.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/extensions/extension_menu_manager.cc ('k') | no next file » | 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 <vector> 5 #include <vector>
6 6
7 #include "base/json/json_reader.h" 7 #include "base/json/json_reader.h"
8 #include "base/path_service.h" 8 #include "base/path_service.h"
9 #include "base/scoped_temp_dir.h" 9 #include "base/scoped_temp_dir.h"
10 #include "base/scoped_vector.h" 10 #include "base/scoped_vector.h"
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 441
442 DictionaryValue* info; 442 DictionaryValue* info;
443 ASSERT_TRUE(list->GetDictionary(0, &info)); 443 ASSERT_TRUE(list->GetDictionary(0, &info));
444 444
445 int tmp_id = 0; 445 int tmp_id = 0;
446 ASSERT_TRUE(info->GetInteger(L"menuItemId", &tmp_id)); 446 ASSERT_TRUE(info->GetInteger(L"menuItemId", &tmp_id));
447 ASSERT_EQ(id.second, tmp_id); 447 ASSERT_EQ(id.second, tmp_id);
448 448
449 std::string tmp; 449 std::string tmp;
450 ASSERT_TRUE(info->GetString(L"mediaType", &tmp)); 450 ASSERT_TRUE(info->GetString(L"mediaType", &tmp));
451 ASSERT_EQ("IMAGE", tmp); 451 ASSERT_EQ("image", tmp);
452 ASSERT_TRUE(info->GetString(L"srcUrl", &tmp)); 452 ASSERT_TRUE(info->GetString(L"srcUrl", &tmp));
453 ASSERT_EQ(params.src_url.spec(), tmp); 453 ASSERT_EQ(params.src_url.spec(), tmp);
454 ASSERT_TRUE(info->GetString(L"mainFrameUrl", &tmp)); 454 ASSERT_TRUE(info->GetString(L"pageUrl", &tmp));
455 ASSERT_EQ(params.page_url.spec(), tmp); 455 ASSERT_EQ(params.page_url.spec(), tmp);
456 456
457 std::wstring wide_tmp; 457 std::wstring wide_tmp;
458 ASSERT_TRUE(info->GetString(L"selectionText", &wide_tmp)); 458 ASSERT_TRUE(info->GetString(L"selectionText", &wide_tmp));
459 ASSERT_EQ(params.selection_text, wide_tmp); 459 ASSERT_EQ(params.selection_text, wide_tmp);
460 460
461 bool bool_tmp = true; 461 bool bool_tmp = true;
462 ASSERT_TRUE(info->GetBoolean(L"editable", &bool_tmp)); 462 ASSERT_TRUE(info->GetBoolean(L"editable", &bool_tmp));
463 ASSERT_EQ(params.is_editable, bool_tmp); 463 ASSERT_EQ(params.is_editable, bool_tmp);
464 } 464 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_menu_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698