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

Unified Diff: ash/mus/frame/non_client_frame_view_mash.h

Issue 2182633011: Replaces ::ui:: with ui:: in ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « ash/mus/frame/move_event_handler.cc ('k') | ash/mus/frame/non_client_frame_view_mash.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/frame/non_client_frame_view_mash.h
diff --git a/ash/mus/frame/non_client_frame_view_mash.h b/ash/mus/frame/non_client_frame_view_mash.h
index 1b2a32d07e1872a4a2dd0404b358efa23299d79e..70f4e4edad1d2ec0fa67a39e45a560544fbd66e8 100644
--- a/ash/mus/frame/non_client_frame_view_mash.h
+++ b/ash/mus/frame/non_client_frame_view_mash.h
@@ -30,13 +30,13 @@ namespace mus {
class FrameCaptionButtonContainerView;
class NonClientFrameViewMash : public views::NonClientFrameView,
- public ::ui::WindowObserver,
- public ::ui::WindowTreeClientObserver {
+ public ui::WindowObserver,
+ public ui::WindowTreeClientObserver {
public:
// Internal class name.
static const char kViewClassName[];
- NonClientFrameViewMash(views::Widget* frame, ::ui::Window* window);
+ NonClientFrameViewMash(views::Widget* frame, ui::Window* window);
~NonClientFrameViewMash() override;
static gfx::Insets GetPreferredClientAreaInsets();
@@ -68,12 +68,12 @@ class NonClientFrameViewMash : public views::NonClientFrameView,
// ui::WindowObserver:
void OnWindowClientAreaChanged(
- ::ui::Window* window,
+ ui::Window* window,
const gfx::Insets& old_client_area,
const std::vector<gfx::Rect>& old_additional_client_area) override;
- void OnWindowDestroyed(::ui::Window* window) override;
+ void OnWindowDestroyed(ui::Window* window) override;
void OnWindowSharedPropertyChanged(
- ::ui::Window* window,
+ ui::Window* window,
const std::string& name,
const std::vector<uint8_t>* old_data,
const std::vector<uint8_t>* new_data) override;
@@ -90,13 +90,13 @@ class NonClientFrameViewMash : public views::NonClientFrameView,
void RemoveObservers();
// ui::WindowTreeClientObserver:
- void OnWindowTreeFocusChanged(::ui::Window* gained_focus,
- ::ui::Window* lost_focus) override;
+ void OnWindowTreeFocusChanged(ui::Window* gained_focus,
+ ui::Window* lost_focus) override;
// Not owned.
views::Widget* frame_;
- ::ui::Window* window_;
+ ui::Window* window_;
ui::PaintCache paint_cache_;
// View which contains the title and window controls.
« no previous file with comments | « ash/mus/frame/move_event_handler.cc ('k') | ash/mus/frame/non_client_frame_view_mash.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698