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

Side by Side Diff: content/common/content_paths.cc

Issue 202863004: Fix "unreachable code" warnings (MSVC warning 4702) in content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « content/child/webcrypto/jwk.cc ('k') | content/common/content_switches_internal.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 (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 "content/public/common/content_paths.h" 5 #include "content/public/common/content_paths.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/mac/bundle_locations.h" 8 #include "base/mac/bundle_locations.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 10
(...skipping 22 matching lines...) Expand all
33 *result = base::mac::FrameworkBundlePath(); 33 *result = base::mac::FrameworkBundlePath();
34 *result = result->Append("Libraries"); 34 *result = result->Append("Libraries");
35 return true; 35 return true;
36 #else 36 #else
37 return PathService::Get(base::DIR_MODULE, result); 37 return PathService::Get(base::DIR_MODULE, result);
38 #endif 38 #endif
39 } 39 }
40 default: 40 default:
41 return false; 41 return false;
42 } 42 }
43
44 return false;
45 } 43 }
46 44
47 // This cannot be done as a static initializer sadly since Visual Studio will 45 // This cannot be done as a static initializer sadly since Visual Studio will
48 // eliminate this object file if there is no direct entry point into it. 46 // eliminate this object file if there is no direct entry point into it.
49 void RegisterPathProvider() { 47 void RegisterPathProvider() {
50 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END); 48 PathService::RegisterProvider(PathProvider, PATH_START, PATH_END);
51 } 49 }
52 50
53 } // namespace content 51 } // namespace content
OLDNEW
« no previous file with comments | « content/child/webcrypto/jwk.cc ('k') | content/common/content_switches_internal.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698