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

Side by Side Diff: chrome/browser/ui/base_shell_dialog.h

Issue 9203001: Implement input type=color UI (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebased Created 8 years, 9 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/ui/android/color_chooser_android.cc ('k') | chrome/browser/ui/browser.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_BASE_SHELL_DIALOG_H_
6 #define CHROME_BROWSER_UI_BASE_SHELL_DIALOG_H_
7 #pragma once
8
9 #include "ui/gfx/native_widget_types.h"
10
11 // A base class for shell dialogs.
12 class BaseShellDialog {
13 public:
14 // Returns true if a shell dialog box is currently being shown modally
15 // to the specified owner.
16 virtual bool IsRunning(gfx::NativeWindow owning_window) const = 0;
17
18 // Notifies the dialog box that the listener has been destroyed and it should
19 // no longer be sent notifications.
20 virtual void ListenerDestroyed() = 0;
21
22 protected:
23 virtual ~BaseShellDialog() {}
24 };
25
26 #endif // CHROME_BROWSER_UI_BASE_SHELL_DIALOG_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/android/color_chooser_android.cc ('k') | chrome/browser/ui/browser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698