diff options
author | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-14 06:39:41 +0000 |
---|---|---|
committer | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-14 06:39:41 +0000 |
commit | 501677d56876d24ff29ec31a18563b7801a2c28d (patch) | |
tree | 5b7c7edcc6c6420cb1d52293253080ce83f6ed3c /webkit/api | |
parent | 6b75ec3c19f7a05c9104ee4b1edf2074af88d5b9 (diff) | |
download | chromium_src-501677d56876d24ff29ec31a18563b7801a2c28d.zip chromium_src-501677d56876d24ff29ec31a18563b7801a2c28d.tar.gz chromium_src-501677d56876d24ff29ec31a18563b7801a2c28d.tar.bz2 |
namespace Foo { class Bar; } is used many places, so I just left it.
There were 2 places that did
namespace Foo {
class Bar;
}
So I just spaced these in. I feel like from now on we should just go ahead and
use the latter format.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/165521
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23424 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/api')
-rw-r--r-- | webkit/api/src/PlatformMessagePortChannel.h | 2 | ||||
-rw-r--r-- | webkit/api/src/WebSettingsImpl.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/webkit/api/src/PlatformMessagePortChannel.h b/webkit/api/src/PlatformMessagePortChannel.h index e668e8b..3ecd12d 100644 --- a/webkit/api/src/PlatformMessagePortChannel.h +++ b/webkit/api/src/PlatformMessagePortChannel.h @@ -41,7 +41,7 @@ #include <wtf/Threading.h> namespace WebKit { -class WebMessagePortChannel; + class WebMessagePortChannel; } namespace WebCore { diff --git a/webkit/api/src/WebSettingsImpl.h b/webkit/api/src/WebSettingsImpl.h index 7d15ac7..b39568e 100644 --- a/webkit/api/src/WebSettingsImpl.h +++ b/webkit/api/src/WebSettingsImpl.h @@ -35,7 +35,7 @@ #include "../public/WebSettings.h" namespace WebCore { -class Settings; + class Settings; } namespace WebKit { |