diff options
author | mmoss@chromium.org <mmoss@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-24 00:44:37 +0000 |
---|---|---|
committer | mmoss@chromium.org <mmoss@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-24 00:44:37 +0000 |
commit | 06e37cbbaa1f3947327efca2f274f02a5d602bda (patch) | |
tree | 24e0089fc8aae90425f5c79cb69a8aaf36464bce /chrome | |
parent | cdf7912ed25a0b7cbd94681e38a65cd89bff9f18 (diff) | |
download | chromium_src-06e37cbbaa1f3947327efca2f274f02a5d602bda.zip chromium_src-06e37cbbaa1f3947327efca2f274f02a5d602bda.tar.gz chromium_src-06e37cbbaa1f3947327efca2f274f02a5d602bda.tar.bz2 |
Fix build break due to misplaced ifdef.
Review URL: http://codereview.chromium.org/27075
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10234 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/plugin/npobject_util.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/plugin/npobject_util.cc b/chrome/plugin/npobject_util.cc index 71c6ab5..e0d813f 100644 --- a/chrome/plugin/npobject_util.cc +++ b/chrome/plugin/npobject_util.cc @@ -2,12 +2,13 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "chrome/plugin/npobject_util.h" + // TODO(port) Just compile an empty file on posix so we can generate the // libplugin target needed by other targets. This whole file does compile (see // r9934), but it doesn't link because of undefined refs to files which aren't // compiling yet (e.g. npobject_proxy stuff). #if defined(OS_WIN) -#include "chrome/plugin/npobject_util.h" #include "chrome/common/plugin_messages.h" #include "chrome/common/win_util.h" |