New issue
Advanced search Search tips

Issue 598175 link

Starred by 1 user

Issue metadata

Status: Fixed
Owner:
Closed: Mar 2016
Cc:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Bug

Blocking:
issue 578344



Sign in to add a comment

rewrite_to_chrome_style clobbers s_ prefix.

Project Member Reported by dcheng@chromium.org, Mar 26 2016

Issue description

In WTF.cpp, there's:

bool s_initialized;
bool s_shutdown;
void (*s_callOnMainThreadFunction)(MainThreadFunction, void*);
ThreadIdentifier s_mainThreadIdentifier;

After the rename, they become:
bool initialized;
bool shutdown;
void (*call_on_main_thread_function)(MainThreadFunction, void*);
ThreadIdentifier main_thread_identifier;

While s_ here isn't strictly correct, removing s_ also causes a naming collision.
 

Comment 1 by dcheng@chromium.org, Mar 27 2016

Owner: dcheng@chromium.org
Status: Started (was: Available)

Comment 3 by dcheng@chromium.org, Mar 28 2016

Status: Fixed (was: Started)

Sign in to add a comment