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

Side by Side Diff: blimp/client/app/android/toolbar.cc

Issue 1636163002: Restructure contents of blimp/client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 | « blimp/client/app/android/toolbar.h ('k') | blimp/client/app/blimp_client_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "blimp/client/android/toolbar.h" 5 #include "blimp/client/app/android/toolbar.h"
6 6
7 #include "base/android/jni_string.h" 7 #include "base/android/jni_string.h"
8 #include "blimp/client/session/blimp_client_session_android.h" 8 #include "blimp/client/app/android/blimp_client_session_android.h"
9 #include "jni/Toolbar_jni.h" 9 #include "jni/Toolbar_jni.h"
10 #include "third_party/skia/include/core/SkBitmap.h" 10 #include "third_party/skia/include/core/SkBitmap.h"
11 #include "ui/gfx/android/java_bitmap.h" 11 #include "ui/gfx/android/java_bitmap.h"
12 #include "url/gurl.h" 12 #include "url/gurl.h"
13 13
14 namespace blimp { 14 namespace blimp {
15 namespace client { 15 namespace client {
16 16
17 namespace { 17 namespace {
18 18
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 void Toolbar::OnLoadingChanged(int tab_id, bool loading) { 103 void Toolbar::OnLoadingChanged(int tab_id, bool loading) {
104 JNIEnv* env = base::android::AttachCurrentThread(); 104 JNIEnv* env = base::android::AttachCurrentThread();
105 105
106 Java_Toolbar_onEngineSentLoading(env, 106 Java_Toolbar_onEngineSentLoading(env,
107 java_obj_.obj(), 107 java_obj_.obj(),
108 static_cast<jboolean>(loading)); 108 static_cast<jboolean>(loading));
109 } 109 }
110 110
111 } // namespace client 111 } // namespace client
112 } // namespace blimp 112 } // namespace blimp
OLDNEW
« no previous file with comments | « blimp/client/app/android/toolbar.h ('k') | blimp/client/app/blimp_client_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698