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

Side by Side Diff: chrome/browser/ui/cocoa/table_model_array_controller_unittest.mm

Issue 5831001: Objective-C Readability CL for bauerb. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 9 years, 11 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/ui/cocoa/table_model_array_controller.mm ('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 #import "chrome/browser/ui/cocoa/table_model_array_controller.h" 5 #import "chrome/browser/ui/cocoa/table_model_array_controller.h"
6 6
7 #include "base/auto_reset.h" 7 #include "base/auto_reset.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
10 #include "chrome/browser/mock_plugin_exceptions_table_model.h" 10 #include "chrome/browser/mock_plugin_exceptions_table_model.h"
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 [controller setSelectionIndexes:indexes]; 162 [controller setSelectionIndexes:indexes];
163 [controller remove:nil]; 163 [controller remove:nil];
164 titles = [[controller arrangedObjects] valueForKey:@"title"]; 164 titles = [[controller arrangedObjects] valueForKey:@"title"];
165 EXPECT_NSEQ(@"(\n" 165 EXPECT_NSEQ(@"(\n"
166 @" BarPlugin,\n" 166 @" BarPlugin,\n"
167 @" \"[*.]example.com\",\n" 167 @" \"[*.]example.com\",\n"
168 @" \"[*.]moose.org\"\n" 168 @" \"[*.]moose.org\"\n"
169 @")", 169 @")",
170 [titles description]); 170 [titles description]);
171 } 171 }
172
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/table_model_array_controller.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698