Remove extern keyword in definition

For consistency with other definition in the same file.
Extern declaration already did in chrome_constants.h

BUG=NONE
TEST=Compiles


Review URL: https://chromiumcodereview.appspot.com/11428142

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170940 0039d316-1c4b-4281-b951-d872f2087c98
parent 2be20a40
...@@ -227,8 +227,8 @@ const bool kEnableTouchIcon = false; ...@@ -227,8 +227,8 @@ const bool kEnableTouchIcon = false;
const float kMaxShareOfExtensionProcesses = 0.30f; const float kMaxShareOfExtensionProcesses = 0.30f;
#if defined(OS_LINUX) #if defined(OS_LINUX)
extern const int kLowestRendererOomScore = 300; const int kLowestRendererOomScore = 300;
extern const int kHighestRendererOomScore = 1000; const int kHighestRendererOomScore = 1000;
#endif #endif
#if defined(OS_WIN) #if defined(OS_WIN)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment