diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-14 20:53:09 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-14 20:53:09 +0000 |
commit | a3638bbe6364eed17f7d03bf89b504ba34d63038 (patch) | |
tree | d7662f1ef60211056fbad1cc17b9d68cf16d4797 /webkit/tools | |
parent | 5714e775d97d11eba077ce7d17b4203f279546a9 (diff) | |
download | chromium_src-a3638bbe6364eed17f7d03bf89b504ba34d63038.zip chromium_src-a3638bbe6364eed17f7d03bf89b504ba34d63038.tar.gz chromium_src-a3638bbe6364eed17f7d03bf89b504ba34d63038.tar.bz2 |
mac: Remove InitWebCoreSystemInterface() calls from many random places.
This is now done at the webkit api layer
(https://bugs.webkit.org/show_bug.cgi?id=78246), so clients no longer
have to explicitly do this. Fixes 2 TODOs, helps with the mac
component build, and removes a direct WebCore dependency from
client code.
BUG=90078
TEST=none
TBR=tony,brettw
Review URL: http://codereview.chromium.org/9374020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121930 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools')
-rw-r--r-- | webkit/tools/test_shell/test_shell_platform_delegate_mac.mm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/webkit/tools/test_shell/test_shell_platform_delegate_mac.mm b/webkit/tools/test_shell/test_shell_platform_delegate_mac.mm index 7cead5d..62c7391 100644 --- a/webkit/tools/test_shell/test_shell_platform_delegate_mac.mm +++ b/webkit/tools/test_shell/test_shell_platform_delegate_mac.mm @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -14,7 +14,6 @@ #include "base/logging.h" #include "base/message_pump_mac.h" #import "base/test/mock_chrome_application_mac.h" -#include "third_party/WebKit/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.h" #include "webkit/tools/test_shell/test_shell.h" #include "webkit/tools/test_shell/test_shell_platform_delegate.h" #include "webkit/tools/test_shell/test_shell_switches.h" @@ -156,7 +155,6 @@ TestShellPlatformDelegate::TestShellPlatformDelegate( gTestShellAutoreleasePool = [[NSAutoreleasePool alloc] init]; // Force AppKit to init itself, but don't start the runloop yet [MockCrApp sharedApplication]; - InitWebCoreSystemInterface(); [NSBundle loadNibNamed:@"MainMenu" owner:NSApp]; } |