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

Side by Side Diff: components/omnibox/keyword_provider_unittest.cc

Issue 774933004: Prefix CommandLine usage with base namespace (Part 9: components) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/message_loop/message_loop.h" 6 #include "base/message_loop/message_loop.h"
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "components/metrics/proto/omnibox_event.pb.h" 8 #include "components/metrics/proto/omnibox_event.pb.h"
9 #include "components/omnibox/autocomplete_match.h" 9 #include "components/omnibox/autocomplete_match.h"
10 #include "components/omnibox/autocomplete_scheme_classifier.h" 10 #include "components/omnibox/autocomplete_scheme_classifier.h"
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 else 347 else
348 EXPECT_EQ(cases[i].expected_url, url->url()); 348 EXPECT_EQ(cases[i].expected_url, url->url());
349 EXPECT_EQ(ASCIIToUTF16(cases[i].updated_text), input.text()); 349 EXPECT_EQ(ASCIIToUTF16(cases[i].updated_text), input.text());
350 EXPECT_EQ(cases[i].updated_cursor_position, input.cursor_position()); 350 EXPECT_EQ(cases[i].updated_cursor_position, input.cursor_position());
351 } 351 }
352 } 352 }
353 353
354 // If extra query params are specified on the command line, they should be 354 // If extra query params are specified on the command line, they should be
355 // reflected (only) in the default search provider's destination URL. 355 // reflected (only) in the default search provider's destination URL.
356 TEST_F(KeywordProviderTest, ExtraQueryParams) { 356 TEST_F(KeywordProviderTest, ExtraQueryParams) {
357 CommandLine::ForCurrentProcess()->AppendSwitchASCII( 357 base::CommandLine::ForCurrentProcess()->AppendSwitchASCII(
358 switches::kExtraSearchQueryParams, "a=b"); 358 switches::kExtraSearchQueryParams, "a=b");
359 359
360 TestData<GURL> url_cases[] = { 360 TestData<GURL> url_cases[] = {
361 { ASCIIToUTF16("a 1 2 3"), 3, 361 { ASCIIToUTF16("a 1 2 3"), 3,
362 { { GURL("aa.com?a=b&foo=1+2+3"), false }, 362 { { GURL("aa.com?a=b&foo=1+2+3"), false },
363 { GURL("bogus URL 1+2+3"), false }, 363 { GURL("bogus URL 1+2+3"), false },
364 { GURL("http://aaaa/?aaaa=1&b=1+2+3&c"), false } } }, 364 { GURL("http://aaaa/?aaaa=1&b=1+2+3&c"), false } } },
365 }; 365 };
366 366
367 RunTest<GURL>(url_cases, arraysize(url_cases), 367 RunTest<GURL>(url_cases, arraysize(url_cases),
368 &AutocompleteMatch::destination_url); 368 &AutocompleteMatch::destination_url);
369 } 369 }
OLDNEW
« no previous file with comments | « components/nacl/zygote/nacl_fork_delegate_linux.cc ('k') | components/omnibox/omnibox_field_trial.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698