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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 2501343003: PlzNavigate: AppCache support. (Closed)
Patch Set: Address review comments Created 4 years 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
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_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 1323 matching lines...) Expand 10 before | Expand all | Expand 10 after
1334 AssociatedInterfaceRegistryImpl associated_interfaces_; 1334 AssociatedInterfaceRegistryImpl associated_interfaces_;
1335 std::unique_ptr<AssociatedInterfaceProviderImpl> 1335 std::unique_ptr<AssociatedInterfaceProviderImpl>
1336 remote_associated_interfaces_; 1336 remote_associated_interfaces_;
1337 1337
1338 // TODO(dcheng): Remove these members. 1338 // TODO(dcheng): Remove these members.
1339 bool committed_first_load_ = false; 1339 bool committed_first_load_ = false;
1340 bool name_changed_before_first_commit_ = false; 1340 bool name_changed_before_first_commit_ = false;
1341 1341
1342 bool browser_side_navigation_pending_ = false; 1342 bool browser_side_navigation_pending_ = false;
1343 1343
1344 // PlzNavigte: The host id to be used by the AppCache system. Defaults to 0.
clamy 2016/11/30 17:40:22 nit: s/PlzNavigte/PlzNavigate
ananta 2016/12/01 05:15:00 Removed variable
1345 int appcache_host_id_;
1346
1344 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1347 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1345 1348
1346 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1349 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1347 }; 1350 };
1348 1351
1349 } // namespace content 1352 } // namespace content
1350 1353
1351 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1354 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698