Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(421)

Unified Diff: apps/ui/views/app_window_frame_view.h

Issue 616253002: Extract NativeAppWindow from src/extensions Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: might fix athena. similarity=33 Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « apps/ui/views/DEPS ('k') | apps/ui/views/app_window_frame_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/ui/views/app_window_frame_view.h
diff --git a/apps/ui/views/app_window_frame_view.h b/apps/ui/views/app_window_frame_view.h
index 7ab2d4c0969d611926495c830ea375e337ffdfa0..433167feafee7683506e0d6ba86d9548cb7969b4 100644
--- a/apps/ui/views/app_window_frame_view.h
+++ b/apps/ui/views/app_window_frame_view.h
@@ -16,15 +16,15 @@
class SkRegion;
-namespace extensions {
-class NativeAppWindow;
-}
-
namespace gfx {
class Canvas;
class Point;
}
+namespace native_app_window {
+class NativeAppWindow;
+}
+
namespace ui {
class Event;
}
@@ -51,7 +51,7 @@ class AppWindowFrameView : public views::NonClientFrameView,
// TODO(benwells): Refactor this to split out frameless and colored frame
// views. See http://crbug.com/359432.
AppWindowFrameView(views::Widget* widget,
- extensions::NativeAppWindow* window,
+ native_app_window::NativeAppWindow* window,
bool draw_frame,
const SkColor& active_frame_color,
const SkColor& inactive_frame_color);
@@ -99,7 +99,7 @@ class AppWindowFrameView : public views::NonClientFrameView,
SkColor CurrentFrameColor();
views::Widget* widget_;
- extensions::NativeAppWindow* window_;
+ native_app_window::NativeAppWindow* window_;
bool draw_frame_;
SkColor active_frame_color_;
SkColor inactive_frame_color_;
« no previous file with comments | « apps/ui/views/DEPS ('k') | apps/ui/views/app_window_frame_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698