| Index: athena/content/shell/dialogs.cc
|
| diff --git a/athena/content/shell/dialogs.cc b/athena/content/shell/dialogs.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..63b09e0169493cd578d4ed8d8c6106407d1a5174
|
| --- /dev/null
|
| +++ b/athena/content/shell/dialogs.cc
|
| @@ -0,0 +1,23 @@
|
| +// Copyright 2014 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 "athena/content/public/dialogs.h"
|
| +#include "base/logging.h"
|
| +
|
| +namespace athena {
|
| +
|
| +content::ColorChooser* OpenColorChooser(
|
| + content::WebContents* web_contents,
|
| + SkColor initial_color,
|
| + const std::vector<content::ColorSuggestion>& suggestions) {
|
| + NOTIMPLEMENTED();
|
| + return NULL;
|
| +}
|
| +
|
| +void OpenFileChooser(content::WebContents* web_contents,
|
| + const content::FileChooserParams& params) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +} // namespace athena
|
|
|