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

Unified Diff: chrome/browser/extensions/isolated_app_browsertest.cc

Issue 1349783006: Cleanup: Pass std::string as const reference if possible (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert third_party changes Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/isolated_app_browsertest.cc
diff --git a/chrome/browser/extensions/isolated_app_browsertest.cc b/chrome/browser/extensions/isolated_app_browsertest.cc
index 1f19e3668c89d343f9280bb3b9763e989d8c20e1..9ff3f0d5b14527f637df1ce3124b99cac61ce3c6 100644
--- a/chrome/browser/extensions/isolated_app_browsertest.cc
+++ b/chrome/browser/extensions/isolated_app_browsertest.cc
@@ -102,7 +102,8 @@ scoped_ptr<net::test_server::HttpResponse> HandleExpectAndSetCookieRequest(
class IsolatedAppTest : public ExtensionBrowserTest {
public:
// Returns whether the given tab's current URL has the given cookie.
- bool WARN_UNUSED_RESULT HasCookie(WebContents* contents, std::string cookie) {
+ bool WARN_UNUSED_RESULT HasCookie(WebContents* contents,
+ const std::string& cookie) {
int value_size;
std::string actual_cookie;
ui_test_utils::GetCookies(contents->GetURL(), contents, &value_size,

Powered by Google App Engine
This is Rietveld 408576698