Commit 1eb7caa4 authored by sky's avatar sky Committed by Commit bot

Adds bug ids to some NOTIMPLEMENTEDs

For better tracking.

BUG=647433,647412,647416,647409,647421,647417
TEST=none

Review-Url: https://codereview.chromium.org/2345613003
Cr-Commit-Position: refs/heads/master@{#419044}
parent fd3d9084
...@@ -45,7 +45,7 @@ void NewWindowDelegateMus::RestoreTab() { ...@@ -45,7 +45,7 @@ void NewWindowDelegateMus::RestoreTab() {
} }
void NewWindowDelegateMus::ShowKeyboardOverlay() { void NewWindowDelegateMus::ShowKeyboardOverlay() {
// TODO: http://crbug.com/631836. // TODO: http://crbug.com/647433.
NOTIMPLEMENTED(); NOTIMPLEMENTED();
} }
......
...@@ -170,6 +170,7 @@ ShelfDelegate* ShellDelegateMus::CreateShelfDelegate(ShelfModel* model) { ...@@ -170,6 +170,7 @@ ShelfDelegate* ShellDelegateMus::CreateShelfDelegate(ShelfModel* model) {
} }
SystemTrayDelegate* ShellDelegateMus::CreateSystemTrayDelegate() { SystemTrayDelegate* ShellDelegateMus::CreateSystemTrayDelegate() {
// TODO: http://crbug.com/647412.
NOTIMPLEMENTED() << " Using the default SystemTrayDelegate implementation"; NOTIMPLEMENTED() << " Using the default SystemTrayDelegate implementation";
return new DefaultSystemTrayDelegate; return new DefaultSystemTrayDelegate;
} }
...@@ -179,6 +180,7 @@ std::unique_ptr<WallpaperDelegate> ShellDelegateMus::CreateWallpaperDelegate() { ...@@ -179,6 +180,7 @@ std::unique_ptr<WallpaperDelegate> ShellDelegateMus::CreateWallpaperDelegate() {
} }
SessionStateDelegate* ShellDelegateMus::CreateSessionStateDelegate() { SessionStateDelegate* ShellDelegateMus::CreateSessionStateDelegate() {
// TODO: http://crbug.com/647416.
NOTIMPLEMENTED() << " Using a stub SessionStateDeleagte implementation"; NOTIMPLEMENTED() << " Using a stub SessionStateDeleagte implementation";
return new SessionStateDelegateStub; return new SessionStateDelegateStub;
} }
...@@ -192,11 +194,13 @@ NewWindowDelegate* ShellDelegateMus::CreateNewWindowDelegate() { ...@@ -192,11 +194,13 @@ NewWindowDelegate* ShellDelegateMus::CreateNewWindowDelegate() {
} }
MediaDelegate* ShellDelegateMus::CreateMediaDelegate() { MediaDelegate* ShellDelegateMus::CreateMediaDelegate() {
// TODO: http://crbug.com/647409.
NOTIMPLEMENTED() << " Using a stub MediaDelegate implementation"; NOTIMPLEMENTED() << " Using a stub MediaDelegate implementation";
return new MediaDelegateStub; return new MediaDelegateStub;
} }
std::unique_ptr<PaletteDelegate> ShellDelegateMus::CreatePaletteDelegate() { std::unique_ptr<PaletteDelegate> ShellDelegateMus::CreatePaletteDelegate() {
// TODO: http://crbug.com/647417.
NOTIMPLEMENTED(); NOTIMPLEMENTED();
return nullptr; return nullptr;
} }
...@@ -207,6 +211,7 @@ ui::MenuModel* ShellDelegateMus::CreateContextMenu(WmShelf* wm_shelf, ...@@ -207,6 +211,7 @@ ui::MenuModel* ShellDelegateMus::CreateContextMenu(WmShelf* wm_shelf,
} }
GPUSupport* ShellDelegateMus::CreateGPUSupport() { GPUSupport* ShellDelegateMus::CreateGPUSupport() {
// TODO: http://crbug.com/647421.
NOTIMPLEMENTED() << " Using a stub GPUSupport implementation"; NOTIMPLEMENTED() << " Using a stub GPUSupport implementation";
return new GPUSupportStub(); return new GPUSupportStub();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment