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

Unified Diff: ash/mus/shell_delegate_mus.cc

Issue 2345613003: Adds bug ids to some NOTIMPLEMENTEDs (Closed)
Patch Set: moar Created 4 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 | « ash/mus/new_window_delegate_mus.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/shell_delegate_mus.cc
diff --git a/ash/mus/shell_delegate_mus.cc b/ash/mus/shell_delegate_mus.cc
index ba2eed46a0d89a05ff2d40e4ecefeb36c236208c..881d1ed0e05cc7af430a130c9c4d2dee6f564910 100644
--- a/ash/mus/shell_delegate_mus.cc
+++ b/ash/mus/shell_delegate_mus.cc
@@ -170,6 +170,7 @@ ShelfDelegate* ShellDelegateMus::CreateShelfDelegate(ShelfModel* model) {
}
SystemTrayDelegate* ShellDelegateMus::CreateSystemTrayDelegate() {
+ // TODO: http://crbug.com/647412.
NOTIMPLEMENTED() << " Using the default SystemTrayDelegate implementation";
return new DefaultSystemTrayDelegate;
}
@@ -179,6 +180,7 @@ std::unique_ptr<WallpaperDelegate> ShellDelegateMus::CreateWallpaperDelegate() {
}
SessionStateDelegate* ShellDelegateMus::CreateSessionStateDelegate() {
+ // TODO: http://crbug.com/647416.
NOTIMPLEMENTED() << " Using a stub SessionStateDeleagte implementation";
return new SessionStateDelegateStub;
}
@@ -192,11 +194,13 @@ NewWindowDelegate* ShellDelegateMus::CreateNewWindowDelegate() {
}
MediaDelegate* ShellDelegateMus::CreateMediaDelegate() {
+ // TODO: http://crbug.com/647409.
NOTIMPLEMENTED() << " Using a stub MediaDelegate implementation";
return new MediaDelegateStub;
}
std::unique_ptr<PaletteDelegate> ShellDelegateMus::CreatePaletteDelegate() {
+ // TODO: http://crbug.com/647417.
NOTIMPLEMENTED();
return nullptr;
}
@@ -207,6 +211,7 @@ ui::MenuModel* ShellDelegateMus::CreateContextMenu(WmShelf* wm_shelf,
}
GPUSupport* ShellDelegateMus::CreateGPUSupport() {
+ // TODO: http://crbug.com/647421.
NOTIMPLEMENTED() << " Using a stub GPUSupport implementation";
return new GPUSupportStub();
}
« no previous file with comments | « ash/mus/new_window_delegate_mus.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698