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

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

Issue 815363002: replace COMPILE_ASSERT with static_assert in chrome/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments 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 (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/basictypes.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
(...skipping 10 matching lines...) Expand all
21 "Omnibox", 21 "Omnibox",
22 "None", 22 "None",
23 "Link Rel Prerender (same domain)", 23 "Link Rel Prerender (same domain)",
24 "Link Rel Prerender (cross domain)", 24 "Link Rel Prerender (cross domain)",
25 "Local Predictor", 25 "Local Predictor",
26 "External Request", 26 "External Request",
27 "Instant", 27 "Instant",
28 "Link Rel Next", 28 "Link Rel Next",
29 "Max", 29 "Max",
30 }; 30 };
31 COMPILE_ASSERT(arraysize(kOriginNames) == ORIGIN_MAX + 1, 31 static_assert(arraysize(kOriginNames) == ORIGIN_MAX + 1,
32 PrerenderOrigin_name_count_mismatch); 32 "prerender origin name count mismatch");
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_local_predictor.cc ('k') | chrome/browser/profile_resetter/profile_resetter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698