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

Unified Diff: ui/display/types/fake_display_controller.h

Issue 2613493002: Fix namespace for src/ui/display/. (Closed)
Patch Set: Rebase. Created 3 years, 11 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 | « ui/display/types/display_snapshot.cc ('k') | ui/display/types/gamma_ramp_rgb_entry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/types/fake_display_controller.h
diff --git a/ui/display/types/fake_display_controller.h b/ui/display/types/fake_display_controller.h
index 72ece3496477187fa21ed3324d2781edd0ca762a..275f8be72942980c8d5d07f33e6dc6f300c543ab 100644
--- a/ui/display/types/fake_display_controller.h
+++ b/ui/display/types/fake_display_controller.h
@@ -15,12 +15,10 @@ namespace gfx {
class Size;
}
-namespace ui {
-class DisplaySnapshot;
-}
-
namespace display {
+class DisplaySnapshot;
+
// Controls the fake display state. Provided by the NativeDisplayDelegate if
// it is intended for use off device where there are no physical displays and
// we need to fake the display state.
@@ -32,7 +30,7 @@ class DISPLAY_TYPES_EXPORT FakeDisplayController {
// Adds |display| to the list of displays and returns true if successful. Will
// fail if an existing display has the same id as |display|.
- virtual bool AddDisplay(std::unique_ptr<ui::DisplaySnapshot> display) = 0;
+ virtual bool AddDisplay(std::unique_ptr<DisplaySnapshot> display) = 0;
// Removes a fake display with specified id, returns true if successful.
virtual bool RemoveDisplay(int64_t display_id) = 0;
« no previous file with comments | « ui/display/types/display_snapshot.cc ('k') | ui/display/types/gamma_ramp_rgb_entry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698