| Index: chrome/browser/ui/panels/native_panel_stack.cc
|
| diff --git a/chrome/browser/ui/panels/native_panel_stack.cc b/chrome/browser/ui/panels/native_panel_stack.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..068569de928a735e58f8f1244efa98f51c14bf01
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/panels/native_panel_stack.cc
|
| @@ -0,0 +1,16 @@
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "chrome/browser/ui/panels/native_panel_stack.h"
|
| +
|
| +#include "base/logging.h"
|
| +
|
| +// static
|
| +#if !defined(TOOLKIT_VIEWS)
|
| +NativePanelStack* NativePanelStack::Create(
|
| + scoped_ptr<StackedPanelCollection> stack) {
|
| + NOTIMPLEMENTED();
|
| + return NULL;
|
| +}
|
| +#endif
|
|
|