electron/shell/browser/child_web_contents_tracker.h

33 lines
899 B
C
Raw Normal View History

2017-04-12 03:25:56 +00:00
// Copyright (c) 2017 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
2019-06-19 20:56:58 +00:00
#ifndef SHELL_BROWSER_CHILD_WEB_CONTENTS_TRACKER_H_
#define SHELL_BROWSER_CHILD_WEB_CONTENTS_TRACKER_H_
2017-04-06 03:15:27 +00:00
#include <string>
#include "content/public/browser/web_contents_user_data.h"
2017-04-06 03:15:27 +00:00
namespace electron {
2017-04-06 03:15:27 +00:00
// ChildWebContentsTracker tracks child WebContents
// created by native `window.open()`
struct ChildWebContentsTracker
: public content::WebContentsUserData<ChildWebContentsTracker> {
GURL url;
std::string frame_name;
private:
explicit ChildWebContentsTracker(content::WebContents* web_contents);
friend class content::WebContentsUserData<ChildWebContentsTracker>;
2017-04-06 03:15:27 +00:00
WEB_CONTENTS_USER_DATA_KEY_DECL();
DISALLOW_COPY_AND_ASSIGN(ChildWebContentsTracker);
2017-04-06 03:15:27 +00:00
};
} // namespace electron
2017-04-06 03:15:27 +00:00
2019-06-19 20:56:58 +00:00
#endif // SHELL_BROWSER_CHILD_WEB_CONTENTS_TRACKER_H_