diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-20 23:02:11 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-20 23:02:11 +0000 |
commit | 1eeb5e08580730cb2a0a2751f578dbc4e6402369 (patch) | |
tree | 8c630e2df02da8815f0ae5984bb708e8186af400 /chrome/app/chrome_dll_main.cc | |
parent | 4b783b4849481423eea0c1a99eb56f1b218ec4ba (diff) | |
download | chromium_src-1eeb5e08580730cb2a0a2751f578dbc4e6402369.zip chromium_src-1eeb5e08580730cb2a0a2751f578dbc4e6402369.tar.gz chromium_src-1eeb5e08580730cb2a0a2751f578dbc4e6402369.tar.bz2 |
Cleanup: Break another common->app dependency.
BUG=46666
TEST=none
Review URL: http://codereview.chromium.org/3007008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53113 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/chrome_dll_main.cc')
-rw-r--r-- | chrome/app/chrome_dll_main.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc index 16dbb2f..57669a4 100644 --- a/chrome/app/chrome_dll_main.cc +++ b/chrome/app/chrome_dll_main.cc @@ -48,7 +48,6 @@ #include "base/stats_table.h" #include "base/string_util.h" #include "base/utf_string_conversions.h" -#include "chrome/app/chrome_version_info.h" #include "chrome/browser/diagnostics/diagnostics_main.h" #include "chrome/browser/renderer_host/render_process_host.h" #include "chrome/browser/platform_util.h" @@ -57,6 +56,7 @@ #include "chrome/common/chrome_descriptors.h" #include "chrome/common/chrome_paths.h" #include "chrome/common/chrome_switches.h" +#include "chrome/common/chrome_version_info.h" #include "chrome/common/logging_chrome.h" #include "chrome/common/main_function_params.h" #include "chrome/common/sandbox_init_wrapper.h" @@ -509,7 +509,7 @@ int ChromeMain(int argc, char** argv) { #if defined(OS_POSIX) && !defined(OS_MACOSX) if (parsed_command_line.HasSwitch(switches::kProductVersion)) { - scoped_ptr<FileVersionInfo> version(chrome_app::GetChromeVersionInfo()); + scoped_ptr<FileVersionInfo> version(chrome::GetChromeVersionInfo()); printf("%s\n", WideToASCII(version->product_version()).c_str()); return 0; } @@ -517,7 +517,7 @@ int ChromeMain(int argc, char** argv) { #if defined(OS_POSIX) if (parsed_command_line.HasSwitch(switches::kVersion)) { - scoped_ptr<FileVersionInfo> version(chrome_app::GetChromeVersionInfo()); + scoped_ptr<FileVersionInfo> version(chrome::GetChromeVersionInfo()); printf("%s %s %s\n", WideToUTF8(version->product_name()).c_str(), WideToASCII(version->product_version()).c_str(), |