diff options
author | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-16 03:09:11 +0000 |
---|---|---|
committer | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-16 03:09:11 +0000 |
commit | aad2787091c3ec293d97926a07874af4c8c5b33d (patch) | |
tree | caa58293e74a2c371d4c2d5ba37fb061c44cb0cc /apps/app_window_contents.cc | |
parent | 15f8d132a8e59ea709c1ff5df3aa068c5ff83ced (diff) | |
download | chromium_src-aad2787091c3ec293d97926a07874af4c8c5b33d.zip chromium_src-aad2787091c3ec293d97926a07874af4c8c5b33d.tar.gz chromium_src-aad2787091c3ec293d97926a07874af4c8c5b33d.tar.bz2 |
Fix declaration vs. implementation ordering in NativeAppWindow{Views|Gtk}
This just reorders the functions in the NativeAppWindow interface. There are
other ordering problems but they aren't worth fixing.
Also move native_app_window.h into apps/ui/.
BUG=306535
TEST=compiles
TBR=benwells@chromium.org for file moves and trivial header path renames
Review URL: https://codereview.chromium.org/27207003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228848 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'apps/app_window_contents.cc')
-rw-r--r-- | apps/app_window_contents.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_window_contents.cc b/apps/app_window_contents.cc index ccafd05..4f11a10 100644 --- a/apps/app_window_contents.cc +++ b/apps/app_window_contents.cc @@ -4,7 +4,7 @@ #include "apps/app_window_contents.h" -#include "apps/native_app_window.h" +#include "apps/ui/native_app_window.h" #include "chrome/browser/chrome_notification_types.h" #include "chrome/browser/profiles/profile.h" #include "chrome/common/extensions/api/app_window.h" |