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

Side by Side Diff: chrome/renderer/searchbox/searchbox_extension.cc

Issue 1548153002: Switch to standard integer types in chrome/. (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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 "chrome/renderer/searchbox/searchbox_extension.h" 5 #include "chrome/renderer/searchbox/searchbox_extension.h"
6 6
7 #include <stddef.h>
8 #include <stdint.h>
9
7 #include "base/command_line.h" 10 #include "base/command_line.h"
8 #include "base/i18n/rtl.h" 11 #include "base/i18n/rtl.h"
9 #include "base/json/string_escape.h" 12 #include "base/json/string_escape.h"
13 #include "base/macros.h"
10 #include "base/metrics/field_trial.h" 14 #include "base/metrics/field_trial.h"
11 #include "base/strings/string_number_conversions.h" 15 #include "base/strings/string_number_conversions.h"
12 #include "base/strings/string_util.h" 16 #include "base/strings/string_util.h"
13 #include "base/strings/stringprintf.h" 17 #include "base/strings/stringprintf.h"
14 #include "base/strings/utf_string_conversions.h" 18 #include "base/strings/utf_string_conversions.h"
15 #include "chrome/common/instant_types.h" 19 #include "chrome/common/instant_types.h"
16 #include "chrome/common/ntp_logging_events.h" 20 #include "chrome/common/ntp_logging_events.h"
17 #include "chrome/common/url_constants.h" 21 #include "chrome/common/url_constants.h"
18 #include "chrome/grit/renderer_resources.h" 22 #include "chrome/grit/renderer_resources.h"
19 #include "chrome/renderer/searchbox/searchbox.h" 23 #include "chrome/renderer/searchbox/searchbox.h"
(...skipping 1250 matching lines...) Expand 10 before | Expand all | Expand 10 after
1270 if (!render_view) return; 1274 if (!render_view) return;
1271 1275
1272 bool display_instant_results = 1276 bool display_instant_results =
1273 SearchBox::Get(render_view)->display_instant_results(); 1277 SearchBox::Get(render_view)->display_instant_results();
1274 DVLOG(1) << render_view << " GetDisplayInstantResults" << 1278 DVLOG(1) << render_view << " GetDisplayInstantResults" <<
1275 display_instant_results; 1279 display_instant_results;
1276 args.GetReturnValue().Set(display_instant_results); 1280 args.GetReturnValue().Set(display_instant_results);
1277 } 1281 }
1278 1282
1279 } // namespace extensions_v8 1283 } // namespace extensions_v8
OLDNEW
« no previous file with comments | « chrome/renderer/searchbox/searchbox_extension.h ('k') | chrome/renderer/searchbox/searchbox_extension_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698