diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-04 19:12:29 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-04 19:12:29 +0000 |
commit | af67f2047292bcc2744d94edf93a00ac46d0a829 (patch) | |
tree | 1df2731d26a8a3c99f99ef062b507cf17a3b9d06 /app | |
parent | 74a2bbe73c9102fa5f14fecb34aaf98a6e1b1784 (diff) | |
download | chromium_src-af67f2047292bcc2744d94edf93a00ac46d0a829.zip chromium_src-af67f2047292bcc2744d94edf93a00ac46d0a829.tar.gz chromium_src-af67f2047292bcc2744d94edf93a00ac46d0a829.tar.bz2 |
Add a function to get the processor architecture. I will be using this in the user agent construction code.
Also cleans up a few nearby things.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6632002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76945 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app')
-rw-r--r-- | app/win/shell.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/win/shell.cc b/app/win/shell.cc index 0f64f06..a951315 100644 --- a/app/win/shell.cc +++ b/app/win/shell.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -11,8 +11,8 @@ #include "base/native_library.h" #include "base/string_util.h" #include "base/win/scoped_comptr.h" -#include "base/win/windows_version.h" #include "base/win/win_util.h" +#include "base/win/windows_version.h" namespace app { namespace win { |