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

Side by Side Diff: components/app_modal_dialogs/javascript_dialog_extensions_client.h

Issue 735473002: Rename app_modal_dialogs dir to app_modal (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase Created 6 years, 1 month 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
OLDNEW
(Empty)
1 // Copyright 2014 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 COMPONENTS_APP_MODAL_DIALOGS_JAVASCRIPT_DIALOG_EXTENSIONS_CLIENT_H_
6 #define COMPONENTS_APP_MODAL_DIALOGS_JAVASCRIPT_DIALOG_EXTENSIONS_CLIENT_H_
7
8 #include <string>
9
10 class GURL;
11
12 namespace content {
13 class WebContents;
14 }
15
16 // A client interface to access and control extensions/apps
17 // that opened a JavaScript dialog.
18 class JavaScriptDialogExtensionsClient {
19 public:
20 virtual ~JavaScriptDialogExtensionsClient() {}
21
22 // Called when the extension associated with |web_contents| opened
23 // a dialog.
24 virtual void OnDialogOpened(content::WebContents* web_contents) = 0;
25
26 // Called when a dialog created by the extension associated with
27 // |web_contents| is closed.
28 virtual void OnDialogClosed(content::WebContents* web_contents) = 0;
29
30 // Sets the name of the extensions associated with the
31 // |web_contents| in the |name_out| if there is one, returning true;
32 // returns false otherwise.
33 virtual bool GetExtensionName(content::WebContents* web_contents,
34 const GURL& origin_url,
35 std::string* name_out) = 0;
36 };
37
38 #endif // COMPONENTS_APP_MODAL_DIALOGS_JAVASCRIPT_DIALOG_EXTENSIONS_CLIENT_H_
OLDNEW
« no previous file with comments | « components/app_modal_dialogs/javascript_app_modal_dialog.cc ('k') | components/app_modal_dialogs/javascript_dialog_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698