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

Side by Side Diff: content/browser/web_contents/frame_tree_node.h

Issue 18868005: content: Migrate from googleurl/ includes to url/ ones. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_FRAME_TREE_NODE_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_FRAME_TREE_NODE_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_FRAME_TREE_NODE_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_FRAME_TREE_NODE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
13 #include "googleurl/src/gurl.h" 13 #include "url/gurl.h"
14 14
15 namespace content { 15 namespace content {
16 16
17 // Any page that contains iframes has a tree structure of the frames in the 17 // Any page that contains iframes has a tree structure of the frames in the
18 // renderer process. We are mirroring this tree in the browser process. This 18 // renderer process. We are mirroring this tree in the browser process. This
19 // class represents a node in this tree and is a wrapper for all objects that 19 // class represents a node in this tree and is a wrapper for all objects that
20 // are frame-specific (as opposed to page-specific). 20 // are frame-specific (as opposed to page-specific).
21 class CONTENT_EXPORT FrameTreeNode { 21 class CONTENT_EXPORT FrameTreeNode {
22 public: 22 public:
23 FrameTreeNode(int64 frame_id, const std::string& name); 23 FrameTreeNode(int64 frame_id, const std::string& name);
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 // TODO(creis): Remove this when we can store subframe URLs in the 67 // TODO(creis): Remove this when we can store subframe URLs in the
68 // NavigationController. 68 // NavigationController.
69 GURL current_url_; 69 GURL current_url_;
70 70
71 DISALLOW_COPY_AND_ASSIGN(FrameTreeNode); 71 DISALLOW_COPY_AND_ASSIGN(FrameTreeNode);
72 }; 72 };
73 73
74 } // namespace content 74 } // namespace content
75 75
76 #endif // CONTENT_BROWSER_WEB_CONTENTS_FRAME_TREE_NODE_H_ 76 #endif // CONTENT_BROWSER_WEB_CONTENTS_FRAME_TREE_NODE_H_
OLDNEW
« no previous file with comments | « content/browser/web_contents/debug_urls.cc ('k') | content/browser/web_contents/interstitial_page_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698