[chromium-dev] Re: URLRequestMockHTTPJob?

2009-04-22 Thread Mike Pinkerton
Ah, I found it. My LOG(INFO)s weren't getting printed correctly, a two-hour red herring. The problem was that DIR_SOURCE_ROOT was wrong for bundles, while it worked fine for the test executables. I guess this was the first use from w/in Chromium or TestShell. On Wed, Apr 22, 2009 at 9:33 AM, Mik

[chromium-dev] Re: URLRequestMockHTTPJob?

2009-04-22 Thread Mike Pinkerton
The problem I'm seeing is that this is getting called before the ChromePathProvider has been registered with the path service in the browser, so it doesn't get any path. I'll keep digging as to why. On Tue, Apr 21, 2009 at 6:11 PM, Tony Chang wrote: > It tries to get it from PathService::Get(ch

[chromium-dev] Re: URLRequestMockHTTPJob?

2009-04-21 Thread Tony Chang
It tries to get it from PathService::Get(chrome::DIR_TEST_DATA). Is that variable set for mac? (see chrome/browser/automation/automation_provider.cc:2117) On Tue, Apr 21, 2009 at 2:49 PM, Mike Pinkerton wrote: > > Anyone familiar with how URLRequestMockHTTPJob is supposed to locate > files? The