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

Side by Side Diff: chrome/browser/prerender/prerender_origin.cc

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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/browser/prerender/prerender_origin.h" 5 #include "chrome/browser/prerender/prerender_origin.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/macros.h"
8 #include "base/metrics/histogram.h" 8 #include "base/metrics/histogram.h"
9 #include "chrome/browser/prerender/prerender_manager.h" 9 #include "chrome/browser/prerender/prerender_manager.h"
10 10
11 namespace prerender { 11 namespace prerender {
12 12
13 namespace { 13 namespace {
14 14
15 const char* kOriginNames[] = { 15 const char* kOriginNames[] = {
16 "[Deprecated] Link Rel Prerender (original)", 16 "[Deprecated] Link Rel Prerender (original)",
17 "[Deprecated] Omnibox (original)", 17 "[Deprecated] Omnibox (original)",
(...skipping 15 matching lines...) Expand all
33 33
34 } // namespace 34 } // namespace
35 35
36 const char* NameFromOrigin(Origin origin) { 36 const char* NameFromOrigin(Origin origin) {
37 DCHECK(static_cast<int>(origin) >= 0 && 37 DCHECK(static_cast<int>(origin) >= 0 &&
38 origin <= ORIGIN_MAX); 38 origin <= ORIGIN_MAX);
39 return kOriginNames[origin]; 39 return kOriginNames[origin];
40 } 40 }
41 41
42 } // namespace prerender 42 } // namespace prerender
OLDNEW
« no previous file with comments | « chrome/browser/prerender/prerender_message_filter.cc ('k') | chrome/browser/prerender/prerender_resource_throttle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698