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

Side by Side Diff: components/test_runner/web_test_proxy.cc

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 | « components/test_runner/web_test_proxy.h ('k') | components/timers/alarm_timer_chromeos.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 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 "components/test_runner/web_test_proxy.h" 5 #include "components/test_runner/web_test_proxy.h"
6 6
7 #include <stddef.h>
8 #include <stdint.h>
9
7 #include <cctype> 10 #include <cctype>
8 11
9 #include "base/callback_helpers.h" 12 #include "base/callback_helpers.h"
10 #include "base/command_line.h" 13 #include "base/command_line.h"
11 #include "base/i18n/rtl.h" 14 #include "base/i18n/rtl.h"
12 #include "base/logging.h" 15 #include "base/logging.h"
13 #include "base/strings/string_util.h" 16 #include "base/strings/string_util.h"
14 #include "base/strings/stringprintf.h" 17 #include "base/strings/stringprintf.h"
15 #include "base/strings/utf_string_conversions.h" 18 #include "base/strings/utf_string_conversions.h"
16 #include "base/thread_task_runner_handle.h" 19 #include "base/thread_task_runner_handle.h"
(...skipping 1404 matching lines...) Expand 10 before | Expand all | Expand 10 after
1421 callback->onError(blink::WebSetSinkIdError::NotAuthorized); 1424 callback->onError(blink::WebSetSinkIdError::NotAuthorized);
1422 else 1425 else
1423 callback->onError(blink::WebSetSinkIdError::NotFound); 1426 callback->onError(blink::WebSetSinkIdError::NotFound);
1424 } 1427 }
1425 1428
1426 blink::WebString WebTestProxyBase::acceptLanguages() { 1429 blink::WebString WebTestProxyBase::acceptLanguages() {
1427 return blink::WebString::fromUTF8(accept_languages_); 1430 return blink::WebString::fromUTF8(accept_languages_);
1428 } 1431 }
1429 1432
1430 } // namespace test_runner 1433 } // namespace test_runner
OLDNEW
« no previous file with comments | « components/test_runner/web_test_proxy.h ('k') | components/timers/alarm_timer_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698